「または」の解決策は次のとおりです "mongoidでクエリを実行します。
以下のようなクエリが必要な場合
select * from user where id = 10 or name = 'hitesh';
mongoidを使用するレールでは、次のようなクエリを作成する必要があります
User.any_of({id: 10},{name: 'hitesh'}).first
「または」の解決策は次のとおりです "mongoidでクエリを実行します。
以下のようなクエリが必要な場合
select * from user where id = 10 or name = 'hitesh';
mongoidを使用するレールでは、次のようなクエリを作成する必要があります
User.any_of({id: 10},{name: 'hitesh'}).first