Click or drag to resize
QueryableExtensions Class
Holds extension methods for IQueryable.
Inheritance Hierarchy
SystemObject
  Kettic.AspNet.Data.ExtensionsQueryableExtensions

Namespace: Kettic.AspNet.Data.Extensions
Assembly: Kettic.AspNet.Controls (in Kettic.AspNet.Controls.dll) Version: 2014.4.1129.0 (2014.04.1129.0)
Syntax
public static class QueryableExtensions

The QueryableExtensions type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAggregate(IQueryable, AggregateFunction)
Calculates the results of a given aggregate function on a sequence of elements.
Public methodStatic memberAggregate(IQueryable, IEnumerableAggregateFunction)
Calculates the results of given aggregates functions on a sequence of elements.
Public methodStatic memberCount
Returns the number of elements in a sequence.
Public methodStatic memberElementAt
Returns the element at a specified index in a sequence.
Public methodStatic memberGroup
Public methodStatic memberGroupBy(IQueryable, IEnumerableIGroupDescriptor)
Groups the elements of a sequence according to a specified groupDescriptors.
Public methodStatic memberGroupBy(IQueryable, LambdaExpression)
Groups the elements of a sequence according to a specified key selector function.
Public methodStatic memberOrderBy(IQueryable, LambdaExpression)
Sorts the elements of a sequence in ascending order according to a key.
Public methodStatic memberOrderBy(IQueryable, LambdaExpression, NullableListSortDirection)
Public methodStatic memberOrderByDescending
Sorts the elements of a sequence in descending order according to a key.
Public methodStatic memberPage
Public methodStatic memberSelect
Projects each element of a sequence into a new form.
Public methodStatic memberSkip
Bypasses a specified number of elements in a sequence and then returns the remaining elements.
Public methodStatic memberSort
Sorts the elements of a sequence using the specified sort descriptors.
Public methodStatic memberTake
Returns a specified number of contiguous elements from the start of a sequence.
Public methodStatic memberToIList
Creates a IListT from an IQueryable where T is ElementType.
Public methodStatic memberWhere(IQueryable, IEnumerableIFilterDescriptor)
Filters a sequence of values based on a collection of IFilterDescriptor.
Public methodStatic memberWhere(IQueryable, Expression)
Filters a sequence of values based on a predicate.
Top
See Also