Click or drag to resize
MongoCollection.InsertBatch Method (Type, IEnumerable)
Inserts multiple documents at once into this collection (see also Insert to insert a single document).

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.0.1
Syntax
public virtual IEnumerable<WriteConcernResult> InsertBatch(
	Type nominalType,
	IEnumerable documents
)

Parameters

nominalType
Type: System.Type
The nominal type of the documents to insert.
documents
Type: System.Collections.IEnumerable
The documents to insert.

Return Value

Type: IEnumerable<WriteConcernResult>
A list of WriteConcernResults (or null if WriteConcern is disabled).
See Also