Table of Contents

Class ProjectionDefinition<TSource>

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

Base class for projections whose projection type is not yet known.

public abstract class ProjectionDefinition<TSource>

Type Parameters

TSource

The type of the source.

Inheritance
ProjectionDefinition<TSource>
Derived
Inherited Members
Extension Methods

Methods

Render(IBsonSerializer<TSource>, IBsonSerializerRegistry)

Renders the projection to a RenderedProjectionDefinition<TProjection>.

public virtual BsonDocument Render(IBsonSerializer<TSource> sourceSerializer, IBsonSerializerRegistry serializerRegistry)

Parameters

sourceSerializer IBsonSerializer<TSource>

The source serializer.

serializerRegistry IBsonSerializerRegistry

The serializer registry.

Returns

BsonDocument

A BsonDocument.

Render(IBsonSerializer<TSource>, IBsonSerializerRegistry, LinqProvider)

Renders the projection to a RenderedProjectionDefinition<TProjection>.

public abstract 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.

Operators

implicit operator ProjectionDefinition<TSource>(BsonDocument)

Performs an implicit conversion from BsonDocument to ProjectionDefinition<TSource>.

public static implicit operator ProjectionDefinition<TSource>(BsonDocument document)

Parameters

document BsonDocument

The document.

Returns

ProjectionDefinition<TSource>

The result of the conversion.

implicit operator ProjectionDefinition<TSource>(string)

Performs an implicit conversion from string to ProjectionDefinition<TSource, TProjection>.

public static implicit operator ProjectionDefinition<TSource>(string json)

Parameters

json string

The JSON string.

Returns

ProjectionDefinition<TSource>

The result of the conversion.