Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 1002 Bytes

DynamicQueryableExtensions.md

File metadata and controls

21 lines (14 loc) · 1002 Bytes

DynamicQueryableExtensions class

Extension methods for IQueryable objects (extending DynamicQueryableExtensions library)

public static class DynamicQueryableExtensions

Public Members

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.

See Also