Table of Contents

Class CreateIndexModel<TDocument>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Model for creating an index.

public sealed class CreateIndexModel<TDocument>

Type Parameters

TDocument

The type of the document.

Inheritance
CreateIndexModel<TDocument>
Inherited Members

Constructors

CreateIndexModel(IndexKeysDefinition<TDocument>, CreateIndexOptions)

Initializes a new instance of the CreateIndexModel<TDocument> class.

public CreateIndexModel(IndexKeysDefinition<TDocument> keys, CreateIndexOptions options = null)

Parameters

keys IndexKeysDefinition<TDocument>

The keys.

options CreateIndexOptions

The options.

Properties

Keys

Gets the keys.

public IndexKeysDefinition<TDocument> Keys { get; }

Property Value

IndexKeysDefinition<TDocument>

Options

Gets the options.

public CreateIndexOptions<TDocument> Options { get; }

Property Value

CreateIndexOptions<TDocument>