Click or drag to resize

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

Creates multiple indexes.

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.5.0+57.Branch.master.Sha.6a4e00a2d91090c65a9b11364b9ebfdb9c7da076
Syntax
public virtual IEnumerable<string> CreateMany(
	IClientSessionHandle session,
	IEnumerable<CreateIndexModel<TDocument>> models,
	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.
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.

Implements

IMongoIndexManager<TDocument>.CreateMany(IClientSessionHandle, IEnumerable<CreateIndexModel<TDocument>>, CancellationToken)
See Also