Queries all documents of the collection.
import vibe.db.mongo.mongo; void test() { auto coll = connectMongoDB("127.0.0.1").getCollection("test"); // find all documents in the "test" collection. coll.find(); }
- http://www.mongodb.org/display/DOCS/Querying - findOne
See Implementation
Queries all documents of the collection.