Click or drag to resize
SortDefinitionExtensions.Descending<TDocument> Method (SortDefinition<TDocument>, FieldDefinition<TDocument>)
Combines an existing sort with an descending field.

Namespace: MongoDB.Driver
Assembly: MongoDB.Driver (in MongoDB.Driver.dll) Version: 2.4.1
Syntax
public static SortDefinition<TDocument> Descending<TDocument>(
	this SortDefinition<TDocument> sort,
	FieldDefinition<TDocument> field
)

Parameters

sort
Type: MongoDB.Driver.SortDefinition<TDocument>
The sort.
field
Type: MongoDB.Driver.FieldDefinition<TDocument>
The field.

Type Parameters

TDocument
The type of the document.

Return Value

Type: SortDefinition<TDocument>
A combined sort.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type SortDefinition<TDocument>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also