Nếu bạn đang sử dụng Mongoid 3, nó cung cấp khả năng truy cập dễ dàng vào trình điều khiển MongoDB:Moped. Dưới đây là ví dụ về cách truy cập một số dữ liệu thô mà không sử dụng Mô hình để truy cập dữ liệu:
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