ThenByDescending(TSource, TKey) Method (IOrderedQueryable(TSource), Expression(Func(TSource, TKey)))

Queryable.ThenByDescending(Of TSource, TKey) Method (IOrderedQueryable(Of TSource), Expression(Of Func(Of TSource, TKey)))

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Performs a subsequent ordering of the elements in a sequence in descending order, according to a key.

Namespace:  System.Linq
Assembly:  System.Core (in System.Core.dll)

'Declaration
<ExtensionAttribute> _
Public Shared Function ThenByDescending(Of TSource, TKey) ( _
	source As IOrderedQueryable(Of TSource), _
	keySelector As Expression(Of Func(Of TSource, TKey)) _
) As IOrderedQueryable(Of TSource)

Type Parameters

TSource

The type of the elements of source.

TKey

The type of the key returned by the function represented by keySelector.

Parameters

source
Type: System.Linq.IOrderedQueryable(Of TSource)
An IOrderedQueryable(Of T) that contains elements to sort.
keySelector
Type: System.Linq.Expressions.Expression(Of Func(Of TSource, TKey))
A function to extract a key from each element.

Return Value

Type: System.Linq.IOrderedQueryable(Of TSource)
An IOrderedQueryable(Of T) whose elements are sorted in descending order according to a key.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IOrderedQueryable(Of TSource). When you use instance method syntax to call this method, omit the first parameter.

ExceptionCondition
ArgumentNullException

source or keySelector is Nothing.

This method has at least one parameter of type Expression(Of TDelegate) whose type argument is one of the Func(Of T, TResult) types. For these parameters, you can pass in a lambda expression and it will be compiled to an Expression(Of TDelegate).

The ThenByDescending(Of TSource, TKey)(IOrderedQueryable(Of TSource), Expression(Of Func(Of TSource, TKey))) method generates a MethodCallExpression that represents calling ThenByDescending(Of TSource, TKey)(IOrderedQueryable(Of TSource), Expression(Of Func(Of TSource, TKey))) itself as a constructed generic method. It then passes the MethodCallExpression to the CreateQuery(Of TElement)(Expression) method of the IQueryProvider represented by the Provider property of the source parameter. The result of calling CreateQuery(Of TElement)(Expression) is cast to type IOrderedQueryable(Of T) and returned.

The query behavior that occurs as a result of executing an expression tree that represents calling ThenByDescending(Of TSource, TKey)(IOrderedQueryable(Of TSource), Expression(Of Func(Of TSource, TKey))) depends on the implementation of the type of the source parameter. The expected behavior is that it performs a secondary sort of the elements of source in descending order, based on the key obtained by invoking keySelector on each element of source. All previously established sort orders are preserved.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1

Windows Phone

Show:
© 2017 Microsoft