4

如何在 Mongoid 中使用AND条件进行查询?

4

2 回答 2

14

您可以链接where语句或在调用中包含多个条件where

Model.where(condition_a: :a, condition_b: :b).all

或者

Model.where(condition_a: :a).where(condition_b: :b).all
于 2012-06-08T18:29:57.730 回答
2

此外,您可以使用.and(other_thing:'value')

例如,Model.where(awesome:true).and(other_thing:true)

于 2012-06-10T04:08:28.400 回答