Click or drag to resize
QueryableExtensions Methods

The QueryableExtensions type exposes the following members.

Methods
  Name Description
Public method Static member Aggregate(IQueryable, AggregateFunction)
Calculates the results of a given aggregate function on a sequence of elements.
Public method Static member Aggregate(IQueryable, IEnumerableAggregateFunction)
Calculates the results of given aggregates functions on a sequence of elements.
Public method Static member Count
Returns the number of elements in a sequence.
Public method Static member ElementAt
Returns the element at a specified index in a sequence.
Public method Static member Group
Public method Static member GroupBy(IQueryable, IEnumerableIGroupDescriptor)
Groups the elements of a sequence according to a specified groupDescriptors.
Public method Static member GroupBy(IQueryable, LambdaExpression)
Groups the elements of a sequence according to a specified key selector function.
Public method Static member OrderBy(IQueryable, LambdaExpression)
Sorts the elements of a sequence in ascending order according to a key.
Public method Static member OrderBy(IQueryable, LambdaExpression, NullableListSortDirection)
Public method Static member OrderByDescending
Sorts the elements of a sequence in descending order according to a key.
Public method Static member Page
Public method Static member Select
Projects each element of a sequence into a new form.
Public method Static member Skip
Bypasses a specified number of elements in a sequence and then returns the remaining elements.
Public method Static member Sort
Sorts the elements of a sequence using the specified sort descriptors.
Public method Static member Take
Returns a specified number of contiguous elements from the start of a sequence.
Public method Static member ToIList
Creates a IListT from an IQueryable where T is ElementType.
Public method Static member Where(IQueryable, IEnumerableIFilterDescriptor)
Filters a sequence of values based on a collection of IFilterDescriptor.
Public method Static member Where(IQueryable, Expression)
Filters a sequence of values based on a predicate.
Top
See Also