[]
        
(Showing Draft Content)

C1.LiveLinq.LiveViews.OrderedView-1.ThenByDescending

ThenByDescending Method

ThenByDescending<TKey>(Expression<Func<T, TKey>>)

Performs a subsequent ordering of view elements in descending order according to a key.

Declaration
public OrderedView<T> ThenByDescending<TKey>(Expression<Func<T, TKey>> keySelector)
Parameters
Type Name Description
Expression<Func<T, TKey>> keySelector

A function to extract a key from each element.

Returns
Type Description
OrderedView<T>

A view whose elements are sorted in descending order according to a key.

Type Parameters
Name Description
TKey

The type of the key returned by keySelector.