像Model.find(array_of_ids, :conditions => {:attribute => "something"})
我将返回其中attribute = something的所有条目,但仅返回该ID数组中的条目。
答案 0 :(得分:4)
Model.where id: array_of_ids, attribute: 'something'
答案 1 :(得分:3)
Model.where('id in (?)', array_of_ids).where(attribute: "something")