Click or drag to resize

SortDefinitionExtensions Class

Extension methods for SortDefinition.
Inheritance Hierarchy
System.Object
  MongoDB.Driver.SortDefinitionExtensions

Namespace:  MongoDB.Driver
Assembly:  MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.7.3+Branch.v2.7.x.Sha.2f1f2be13a23b8520cb9c2ee8439c022f9a03efe
Syntax
public static class SortDefinitionExtensions

The SortDefinitionExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAscending<TDocument>(SortDefinition<TDocument>, FieldDefinition<TDocument>)
Combines an existing sort with an ascending field.
Public methodStatic memberAscending<TDocument>(SortDefinition<TDocument>, Expression<Func<TDocument, Object>>)
Combines an existing sort with an ascending field.
Public methodStatic memberDescending<TDocument>(SortDefinition<TDocument>, FieldDefinition<TDocument>)
Combines an existing sort with an descending field.
Public methodStatic memberDescending<TDocument>(SortDefinition<TDocument>, Expression<Func<TDocument, Object>>)
Combines an existing sort with an descending field.
Public methodStatic memberMetaTextScore<TDocument>
Combines an existing sort with a descending sort on the computed relevance score of a text search. The field name should be the name of the projected relevance score field.
Top
See Also