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.21.0+5a9c3311e158910b88195f290e6d4b1b2715d2b2
Syntax
IEnumerable<string> CreateMany(
	IClientSessionHandle session,
	IEnumerable<CreateIndexModel<TDocument>> models,
	CreateManyIndexesOptions options,
	CancellationToken cancellationToken = null
)

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