System.Collections.Generic.IEnumerable.OrderBy(string)

Here are the examples of the csharp api System.Collections.Generic.IEnumerable.OrderBy(string) taken from open source projects. By voting up you can indicate which examples are most useful and appropriate.

2 Examples 7

19 Source : EnumerableExtensions.cs
with MIT License
from PoweredSoft

public static IEnumerable<T> Sort<T>(this IEnumerable<T> list, string path, QueryOrderByDirection sortDirection, bool appendSort)
            => list.AsQueryable().OrderBy(path, sortDirection, appendSort);

19 Source : EnumerableExtensions.cs
with MIT License
from PoweredSoft

public static IEnumerable<T> OrderBy<T>(this IEnumerable<T> list, string path)
            => list.AsQueryable().OrderBy(path);