Click or drag to resize

IMongoCollection<TDocument>.InsertManyAsync Method (IEnumerable<TDocument>, InsertManyOptions, CancellationToken)

Inserts many documents.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.11.0+cb27a82ea70620ad1acad8058809be8302ae4f2a
Syntax
Task InsertManyAsync(
	IEnumerable<TDocument> documents,
	InsertManyOptions options = null,
	CancellationToken cancellationToken = null
)

Parameters

documents
Type: System.Collections.Generic.IEnumerable<TDocument>
The documents.
options (Optional)
Type: MongoDB.Driver.InsertManyOptions
The options.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: Task
The result of the insert operation.
See Also