With a regular ActiveRecord/SQL setup in Rails, in console when I execute commands *.where, *.all etc., I get back the actual array of record items. However, after switching to Mongoid, I instead get back a criteria. How do I get the actual results?
This is what I get now…
ruby-1.9.2-p180 :001 > App.all
=> #<Mongoid::Criteria
selector: {},
options: {},
class: App,
embedded: false>
When you query a model in Mongoid, it returns a criteria object (as you’ve stated), it doesn’t actually run the query until you request data from the criteria.
All you need to do is iterate over the results, using
eachormapor any of the array methods, like this:Alternatively, if you just want the array, you can just call
to_aon the criteria: