Skip to content

T_CodeJam_Collections_QueryableExtensions

andrewvk edited this page Apr 5, 2016 · 5 revisions

QueryableExtensions Class

[This is preliminary documentation and is subject to change.]

Extensions for IQueryable(T)

Inheritance Hierarchy

System.Object
  CodeJam.Collections.QueryableExtensions
Namespace: CodeJam.Collections
Assembly: CodeJam (in CodeJam.dll) Version: 1.0.0.0 (1.0.0.0)

Syntax

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.

Methods

 

Name Description
Public methodStatic member OrderBy(T) Sorts the elements of a sequence in ascending order according to a key.
Public methodStatic member OrderByDescending(T) Sorts the elements of a sequence in descending order according to a key.
Public methodStatic member Page(T) Extracts pageSize elements from a sequence at a particular one-based page number.
Public methodStatic member Slice(T) Extracts count elements from a sequence at a particular zero-based starting index.
Public methodStatic member ThenBy(T) Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.
Public methodStatic member ThenByDescending(T) Performs a subsequent ordering of the elements in a sequence in descending order according to a key.
  Back to Top

See Also

Reference

CodeJam.Collections Namespace

Clone this wiki locally