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.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntaxpublic 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