我有这个查询:
City.search(@query, where: {
activated: true,
available: true,
or: [
[
{ country_id: [92, 95] },
{ admin_code_id: [922, 927] }
]
]
}).
但我认为 where hash 不好,因为我想做的是:
activated
AND available
AND (country_id
在 [92, 95]
或 admin_code_id
在 [922, 927]
)
我尝试了很多不同的语法,但对我没有用。