Click or drag to resize

IMongoSearchIndexManagerCreateManyAsync Method

Creates multiple indexes.

Namespace:  MongoDB.Driver.Search
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.22.0+75246110ed1247226fcc7f8eb2c54ffab745693e
Syntax
Task<IEnumerable<string>> CreateManyAsync(
	IEnumerable<CreateSearchIndexModel> models,
	CancellationToken cancellationToken = default
)

Parameters

models
Type: System.Collections.GenericIEnumerableCreateSearchIndexModel
The models defining each of the indexes.
cancellationToken (Optional)
Type: System.ThreadingCancellationToken
The cancellation token.

Return Value

Type: TaskIEnumerableString
A Task whose result is an IEnumerableT of the names of the indexes that were created.
See Also