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
SyntaxIEnumerable<string> CreateMany(
IClientSessionHandle session,
IEnumerable<CreateIndexModel<TDocument>> models,
CreateManyIndexesOptions options,
CancellationToken cancellationToken = default
)
Function CreateMany (
session As IClientSessionHandle,
models As IEnumerable(Of CreateIndexModel(Of TDocument)),
options As CreateManyIndexesOptions,
Optional cancellationToken As CancellationToken = Nothing
) As IEnumerable(Of String)
abstract CreateMany :
session : IClientSessionHandle *
models : IEnumerable<CreateIndexModel<'TDocument>> *
options : CreateManyIndexesOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken new CancellationToken()
*)
-> IEnumerable<string>
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