I want to do
Model.where(\'id = ?\', [array of values])
How do I accomplish this look up without chaining OR statements together?
For readability, this can be simplified even further, to:
Model.find_by(id: [array of values])
This is equivalent to using where, but more explicit:
where
Model.where(id: [array of values])