Hvis du bruger Mongoid 3, giver den nem adgang til MongoDB-driveren:knallert. Her er et eksempel på at få adgang til nogle rå data uden at bruge modeller til at få adgang til dataene:
db = Mongoid::Sessions.default
# inserting a new document
collection = db[:collection_name]
collection.insert(name: 'my new document')
# finding a document
doc = collection.find(name: 'my new document').first
# iterating over all documents in a collection
collection.find.each do |document|
puts document.inspect
end