I want to do
Model.where(\'id = ?\', [array of values])
How do I accomplish this look up without chaining OR statements together?
If you are looking for a query in mongoid this is the oneModel.where(:field.in => ["value1", "value2"] ).all.to_a
Model.where(:field.in => ["value1", "value2"] ).all.to_a