BulkWriteOperationTDocumentFind Method |
Creates a builder for a new write request (either a remove or an update).
Namespace:
MongoDB.Driver
Assembly:
MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax public BulkWriteRequestBuilder<TDocument> Find(
IMongoQuery query,
Collation collation = null
)
Public Function Find (
query As IMongoQuery,
Optional collation As Collation = Nothing
) As BulkWriteRequestBuilder(Of TDocument)
member Find :
query : IMongoQuery *
?collation : Collation
(* Defaults:
let _collation = defaultArg collation null
*)
-> BulkWriteRequestBuilder<'TDocument>
Parameters
- query
- Type: MongoDB.DriverIMongoQuery
The query. - collation (Optional)
- Type: MongoDB.DriverCollation
The collation.
Return Value
Type:
BulkWriteRequestBuilderTDocumentA FluentWriteRequestBuilder.
See Also