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!(T, R, U) find(T query, U returnFieldSelector, QueryFlags flags, int num_skip, int num_docs_per_chunk)
  2. MongoCursor!(T, R, typeof(null)) find(T query)
    struct MongoCollection
    MongoCursor!(T, R, typeof(null))
    find
    (
    R = Bson
    T
    )
    ()
  3. MongoCursor!(Bson, R, typeof(null)) find()

See Also

Meta