Table of Contents

Method MetaTextScore

Namespace
MongoDB.Driver
Assembly
MongoDB.Driver.dll

MetaTextScore<TDocument>(ProjectionDefinition<TDocument>, FieldDefinition<TDocument>)

Combines an existing projection with a text score projection.

public static ProjectionDefinition<TDocument> MetaTextScore<TDocument>(this ProjectionDefinition<TDocument> projection, FieldDefinition<TDocument> field)

Parameters

projection ProjectionDefinition<TDocument>

The projection.

field FieldDefinition<TDocument>

The field.

Returns

ProjectionDefinition<TDocument>

A combined projection.

Type Parameters

TDocument

The type of the document.

MetaTextScore<TDocument>(ProjectionDefinition<TDocument>, Expression<Func<TDocument, object>>)

Combines an existing projection with a text score projection.

public static ProjectionDefinition<TDocument> MetaTextScore<TDocument>(this ProjectionDefinition<TDocument> projection, Expression<Func<TDocument, object>> field)

Parameters

projection ProjectionDefinition<TDocument>

The projection.

field Expression<Func<TDocument, object>>

The field.

Returns

ProjectionDefinition<TDocument>

A combined projection.

Type Parameters

TDocument

The type of the document.