Click or drag to resize

SortByTDocumentMetaTextScore Method

Adds a key to sort by the computed relevance score when using text search. The name of the key should be the name of the projected relevance score field.

Namespace:  MongoDB.Driver.Builders
Assembly:  MongoDB.Driver.Legacy (in MongoDB.Driver.Legacy.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
Syntax
public static SortByBuilder<TDocument> MetaTextScore(
	Expression<Func<TDocument, Object>> memberExpression
)

Parameters

memberExpression
Type: System.Linq.ExpressionsExpressionFuncTDocument, Object
The member expression specifying the projected field.

Return Value

Type: SortByBuilderTDocument
The builder (so method calls can be chained).
See Also