Click or drag to resize

MongoIndexManagerBaseTDocumentCreateManyAsync Method (IEnumerableCreateIndexModelTDocument, CreateManyIndexesOptions, CancellationToken)

Creates multiple indexes.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.12.2+a4a3888f4fb51bb518b1eb5002effc2d47f2ea6a
Syntax
public virtual Task<IEnumerable<string>> CreateManyAsync(
	IEnumerable<CreateIndexModel<TDocument>> models,
	CreateManyIndexesOptions options,
	CancellationToken cancellationToken = null
)

Parameters

models
Type: System.Collections.GenericIEnumerableCreateIndexModelTDocument
The models defining each of the indexes.
options
Type: MongoDB.DriverCreateManyIndexesOptions
The options for create multiple indexes.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskIEnumerableString
A task whose result is an IEnumerableT of the names of the indexes that were created.

Implements

IMongoIndexManagerTDocumentCreateManyAsync(IEnumerableCreateIndexModelTDocument, CreateManyIndexesOptions, CancellationToken)
See Also