Extension methods for IQueryable objects (extending DynamicQueryableExtensions library)
public static class DynamicQueryableExtensions
name | description |
---|---|
static AggregateBy(…) | Performs multiple aggregations dynamically, returning a queryable collection of dynamic objects which properties defined by the members list, along with new properties computed using aggregateOperation. |
static OrderByMany<T>(…) | Orders a queryable by all specified sorters (passed as property names) |
static Select<TResult>(…) | Projects multiple values dynamically on a new object (of type TResult), as specified by the selectors. |
- namespace Wokhan.Linq.Extensions