| 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.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
 Syntax
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
See Also