Sorts an untyped IQueryable by guessing the inner type, using OrderByAllTyped
public static IOrderedQueryable<object> OrderByAll(this IQueryable src)| parameter | description |
|---|---|
| src | Source collection |
- class EnumerableExtensions
- namespace Wokhan.Collections.Generic.Extensions
Orders an IEnumerable which items are also IEnumerable by all it's inner enumeration values, optionnally skipping some
public static IOrderedEnumerable<T[]> OrderByAll<T>(this IEnumerable<IEnumerable<T>> src,
int skip = 0)| parameter | description |
|---|---|
| T | Inner enumerable items type |
| src | Source collection |
| skip | Number of items to skip in the inner enumerable used for sorting |
- class EnumerableExtensions
- namespace Wokhan.Collections.Generic.Extensions
Orders an IEnumerable using all fields of the T type
public static IOrderedEnumerable<T> OrderByAll<T>(this IEnumerable<T> src, int skip = 0)| parameter | description |
|---|---|
| T | Inner enumerable items type |
| src | Source collection |
| skip | Number of fields to ignore when sorting |
- class EnumerableExtensions
- namespace Wokhan.Collections.Generic.Extensions