[]
        
(Showing Draft Content)

C1.LiveLinq.Ordering-1

Ordering<T> Class

Represents a sorted IIndexedSource<T>.

Inheritance
Ordering<T>
Namespace: C1.LiveLinq
Assembly: C1.LiveLinq.4.8.dll
Syntax
public class Ordering<T> : IIndexedSource<T>, IEnumerable<T>, IEnumerable
Type Parameters
Name Description
T

The type of the elements of the collection.

Remarks

An Ordering<T> can be obtained as a result of an OrderBy or OrderByDescending query operator. Query operators (extension methods) ThenBy and ThenByDescending operate on objects of type Ordering<T>.

Methods

Name Description
GetEnumerator()

Returns an enumerator that iterates through the Ordering<T>.

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

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

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

Performs a subsequent ordering of the elements in a collection in ascending order according to a key.

Extension Methods