Table of Contents

Class JsonProjectionDefinition<TSource>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

A JSON string based projection whose projection type is not yet known.

public sealed class JsonProjectionDefinition<TSource> : ProjectionDefinition<TSource>

Type Parameters

TSource

The type of the source.

Inheritance
JsonProjectionDefinition<TSource>
Inherited Members
Extension Methods

Constructors

JsonProjectionDefinition(string)

Initializes a new instance of the JsonProjectionDefinition<TSource> class.

public JsonProjectionDefinition(string json)

Parameters

json string

The json.

Properties

Json

Gets the json.

public string Json { get; }

Property Value

string

Methods

Render(IBsonSerializer<TSource>, IBsonSerializerRegistry, LinqProvider)

Renders the projection to a RenderedProjectionDefinition<TProjection>.

public override BsonDocument Render(IBsonSerializer<TSource> sourceSerializer, IBsonSerializerRegistry serializerRegistry, LinqProvider linqProvider)

Parameters

sourceSerializer IBsonSerializer<TSource>

The source serializer.

serializerRegistry IBsonSerializerRegistry

The serializer registry.

linqProvider LinqProvider

The LINQ provider.

Returns

BsonDocument

A BsonDocument.