[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.ConnectorAssembly: NFX.MongoDB (in NFX.MongoDB.dll) Version: 3.0.0.1 (3.0.0.1)
public Cursor Find(
Query query,
int skipCount = 0,
int fetchBy = 0,
BSONDocument selector = null
)
public Cursor Find(
Query query,
int skipCount = 0,
int fetchBy = 0,
BSONDocument selector = null
)
Public Function Find (
query As Query,
Optional skipCount As Integer = 0,
Optional fetchBy As Integer = 0,
Optional selector As BSONDocument = Nothing
) As Cursor
Public Function Find (
query As Query,
Optional skipCount As Integer = 0,
Optional fetchBy As Integer = 0,
Optional selector As BSONDocument = Nothing
) As Cursor
public:
Cursor^ Find(
Query^ query,
int skipCount = 0,
int fetchBy = 0,
BSONDocument^ selector = nullptr
)
public:
Cursor^ Find(
Query^ query,
int skipCount = 0,
int fetchBy = 0,
BSONDocument^ selector = nullptr
)
member Find :
query : Query *
?skipCount : int *
?fetchBy : int *
?selector : BSONDocument
(* Defaults:
let _skipCount = defaultArg skipCount 0
let _fetchBy = defaultArg fetchBy 0
let _selector = defaultArg selector null
*)
-> Cursor
member Find :
query : Query *
?skipCount : int *
?fetchBy : int *
?selector : BSONDocument
(* Defaults:
let _skipCount = defaultArg skipCount 0
let _fetchBy = defaultArg fetchBy 0
let _selector = defaultArg selector null
*)
-> Cursor
Return Value
Type:
CursorAn iterable cursor