MongoCollection.find

Queries the collection for existing documents.

If no arguments are passed to find(), all documents of the collection will be returned.

  1. MongoCursor!R find(T query, U returnFieldSelector, QueryFlags flags, int num_skip, int num_docs_per_chunk)
    struct MongoCollection
    MongoCursor!R
    find
    (
    R = Bson
    T
    U
    )
  2. MongoCursor!R find(T query)
  3. MongoCursor!R find()

See Also

Meta