Click or drag to resize

IMongoIndexManager<TDocument>.CreateMany Method (IClientSessionHandle, IEnumerable<CreateIndexModel<TDocument>>, CreateManyIndexesOptions, CancellationToken)

Creates multiple indexes.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.14.0+2b37a1fe1cbdbe1a020b52b77f1197b6d77575e7
Syntax
IEnumerable<string> CreateMany(
	IClientSessionHandle session,
	IEnumerable<CreateIndexModel<TDocument>> models,
	CreateManyIndexesOptions options,
	CancellationToken cancellationToken = default
)

Parameters

session
Type: MongoDB.Driver.IClientSessionHandle
The session.
models
Type: System.Collections.Generic.IEnumerable<CreateIndexModel<TDocument>>
The models defining each of the indexes.
options
Type: MongoDB.Driver.CreateManyIndexesOptions
The options for create multiple indexes.
cancellationToken (Optional)
Type: System.Threading.CancellationToken
The cancellation token.

Return Value

Type: IEnumerable<String>
An IEnumerable<T> of the names of the indexes that were created.
See Also