Zde je řešení pro „NEBO " dotaz v mongoidu.
pokud chcete dotaz jako níže
select * from user where id = 10 or name = 'hitesh';
v rails s mongoidem pak musíte napsat dotaz takto
User.any_of({id: 10},{name: 'hitesh'}).first
Zde je řešení pro „NEBO " dotaz v mongoidu.
pokud chcete dotaz jako níže
select * from user where id = 10 or name = 'hitesh';
v rails s mongoidem pak musíte napsat dotaz takto
User.any_of({id: 10},{name: 'hitesh'}).first