Order the sequence by another key, ascending, with a custom comparer.
See orderBy for an example.
Order the sequence by another key, descending.
// Sort by length of the string, then reverse alphabetical order
from(['one', 'two', 'thirteen', 'five']).orderBy(x => x.length).thenByDescending(x => x)
// => ['two', 'one', 'five', 'thirteen']
Order the sequence by another key, descending, with a custom comparer.
See orderBy for an example.
Order the sequence by another key, ascending.