Table of Contents

Class JsonIndexKeysDefinition<TDocument>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

A JSON string based index keys definition.

public sealed class JsonIndexKeysDefinition<TDocument> : IndexKeysDefinition<TDocument>

Type Parameters

TDocument

The type of the document.

Inheritance
JsonIndexKeysDefinition<TDocument>
Inherited Members
Extension Methods

Constructors

JsonIndexKeysDefinition(string)

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

public JsonIndexKeysDefinition(string json)

Parameters

json string

The json.

Properties

Json

Gets the json.

public string Json { get; }

Property Value

string

Methods

Render(IBsonSerializer<TDocument>, IBsonSerializerRegistry, LinqProvider)

Renders the index keys definition to a BsonDocument.

public override BsonDocument Render(IBsonSerializer<TDocument> documentSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider)

Parameters

documentSerializer IBsonSerializer<TDocument>

The document serializer.

serializerRegistry IBsonSerializerRegistry

The serializer registry.

linqProvider LinqProvider

The LINQ provider.

Returns

BsonDocument

A BsonDocument.