Collection Find Method NFX Class Library

[This is preliminary documentation and is subject to change.]

Finds all documents that match the supplied query, optionally skipping some. Fetches only fetchBy at once, then lazily fetches via cursor

Namespace: NFX.DataAccess.MongoDB.Connector
Assembly: NFX.MongoDB (in NFX.MongoDB.dll) Version: 3.0.0.1 (3.0.0.1)
Syntax

public Cursor Find(
	Query query,
	int skipCount = 0,
	int fetchBy = 0,
	BSONDocument selector = null
)

Return Value

Type: Cursor
An iterable cursor
See Also