-
Notifications
You must be signed in to change notification settings - Fork 36
T_CodeJam_Collections_QueryableExtensions
Andrew Koryavchenko edited this page Jun 17, 2018
·
5 revisions
Extensions for IQueryable(T)
Extension methods for IQueryable
System.Object
CodeJam.Collections.QueryableExtensions
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 2.1.0.0
C#
public static class QueryableExtensions
VB
<ExtensionAttribute>
Public NotInheritable Class QueryableExtensions
F#
[<AbstractClassAttribute>]
[<SealedAttribute>]
[<ExtensionAttribute>]
type QueryableExtensions = class end
The QueryableExtensions type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() |
Intersect(T, TValue)(IQueryable(T), Expression(Func(T, Object)), Expression(Func(T, Object)), Range(TValue)) | Intersects source by specified values range. |
![]() ![]() |
Intersect(T, TValue)(IQueryable(T), Expression(Func(T, Object)), Expression(Func(T, Object)), Range(TValue), QueryRangeBoundaries) | Intersects source by specified values range. |
![]() ![]() |
Intersect(T, TValue)(IQueryable(T), Expression(Func(T, Object)), Expression(Func(T, Object)), Expression(Func(T, Boolean)), Expression(Func(T, Boolean)), Range(TValue)) | Intersects source by specified values range. |
![]() ![]() |
OrderBy(T) | Sorts the elements of a sequence in ascending order according to a key. |
![]() ![]() |
OrderByDescending(T) | Sorts the elements of a sequence in descending order according to a key. |
![]() ![]() |
Page(T) | Extracts pageSize elements from a sequence at a particular one-based page number. |
![]() ![]() |
Slice(T) | Extracts count elements from a sequence at a particular zero-based starting index. |
![]() ![]() |
ThenBy(T) | Performs a subsequent ordering of the elements in a sequence in ascending order according to a key. |
![]() ![]() |
ThenByDescending(T) | Performs a subsequent ordering of the elements in a sequence in descending order according to a key. |