Click or drag to resize

MongoCollectionBase<TDocument>.BulkWriteAsync Method (IClientSessionHandle, IEnumerable<WriteModel<TDocument>>, BulkWriteOptions, CancellationToken)

Performs multiple write operations.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
public virtual Task<BulkWriteResult<TDocument>> BulkWriteAsync(
	IClientSessionHandle session,
	IEnumerable<WriteModel<TDocument>> requests,
	BulkWriteOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

session
Type: MongoDB.Driver.IClientSessionHandle
The session.
requests
Type: System.Collections.Generic.IEnumerable<WriteModel<TDocument>>
The requests.
options (Optional)
Type: MongoDB.Driver.BulkWriteOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task<BulkWriteResult<TDocument>>
The result of writing.

Implements

IMongoCollection<TDocument>.BulkWriteAsync(IClientSessionHandle, IEnumerable<WriteModel<TDocument>>, BulkWriteOptions, CancellationToken)
See Also