Click or drag to resize
IMongoCollection<TDocument>.InsertMany Method
Inserts many documents.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.2.0
Syntax
void InsertMany(
	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.
See Also