[]
Performs a subsequent ordering of view elements in ascending order according to a key.
public OrderedView<T> ThenBy<TKey>(Expression<Func<T, TKey>> keySelector)
| Type | Name | Description |
|---|---|---|
| Expression<Func<T, TKey>> | keySelector | A function to extract a key from each element. |
| Type | Description |
|---|---|
| OrderedView<T> | A view whose elements are sorted according to a key. |
| Name | Description |
|---|---|
| TKey | The type of the key returned by keySelector. |