IMongoIndexManager<TDocument>.CreateManyAsync 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
SyntaxTask<IEnumerable<string>> CreateManyAsync(
IClientSessionHandle session,
IEnumerable<CreateIndexModel<TDocument>> models,
CreateManyIndexesOptions options,
CancellationToken cancellationToken = null
)
Function CreateManyAsync (
session As IClientSessionHandle,
models As IEnumerable(Of CreateIndexModel(Of TDocument)),
options As CreateManyIndexesOptions,
Optional cancellationToken As CancellationToken = Nothing
) As Task(Of IEnumerable(Of String))
abstract CreateManyAsync :
session : IClientSessionHandle *
models : IEnumerable<CreateIndexModel<'TDocument>> *
options : CreateManyIndexesOptions *
?cancellationToken : CancellationToken
(* Defaults:
let _cancellationToken = defaultArg cancellationToken null
*)
-> Task<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:
Task<IEnumerable<String>>
A task whose result is an
IEnumerable<T> of the names of the indexes that were created.
See Also