MongoCollection.InsertBatch Method (Type, IEnumerable, MongoInsertOptions) |
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.17.0+b316340e6cc3a8bfc8638dc31b54fbbfe41bfcb2
Syntaxpublic virtual IEnumerable<WriteConcernResult> InsertBatch(
Type nominalType,
IEnumerable documents,
MongoInsertOptions options
)
Public Overridable Function InsertBatch (
nominalType As Type,
documents As IEnumerable,
options As MongoInsertOptions
) As IEnumerable(Of WriteConcernResult)
abstract InsertBatch :
nominalType : Type *
documents : IEnumerable *
options : MongoInsertOptions -> IEnumerable<WriteConcernResult>
override InsertBatch :
nominalType : Type *
documents : IEnumerable *
options : MongoInsertOptions -> IEnumerable<WriteConcernResult>
Parameters
- nominalType
- Type: System.Type
The nominal type of the documents to insert. - documents
- Type: System.Collections.IEnumerable
The documents to insert. - options
- Type: MongoDB.Driver.MongoInsertOptions
The options to use for this Insert.
Return Value
Type:
IEnumerable<WriteConcernResult>A list of WriteConcernResults (or null if WriteConcern is disabled).
See Also