Mongoid obalí objekt Collection, aby vrátil objekty správné třídy.
Pokud je tedy uživatel model Mongoid:
cursor = User.collection.find({}, {}) # Just like the Ruby driver...
records = cursor.to_a # An array of User objects
Upravte a přidejte:Ve skutečnosti také zalamuje Mongo's Cursor class. Podívejte se zde:
def each
@cursor.each do |document|
yield Mongoid::Factory.build(@klass, document)
end
end