Mono Class Library: Overview

System.Linq.Queryable: Members

The members of System.Linq.Queryable are listed below.

See Also: Inherited members from System.Object

Public Methods

static
Aggregate<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TSource, TSource>>) : TSource
Documentation for this section has not yet been entered.
static
Aggregate<TSource,TAccumulate>(this IQueryable<TSource>, TAccumulate, System.Linq.Expressions.Expression<Func<TAccumulate, TSource, TAccumulate>>) : TAccumulate
Documentation for this section has not yet been entered.
static
Aggregate<TSource,TAccumulate,TResult>(this IQueryable<TSource>, TAccumulate, System.Linq.Expressions.Expression<Func<TAccumulate, TSource, TAccumulate>>, System.Linq.Expressions.Expression<Func<TAccumulate, TResult>>) : TResult
Documentation for this section has not yet been entered.
static
All<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : bool
Documentation for this section has not yet been entered.
static
Any<TSource>(this IQueryable<TSource>) : bool
Documentation for this section has not yet been entered.
static
Any<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : bool
Documentation for this section has not yet been entered.
static
AsQueryable(this IEnumerable) : IQueryable
Documentation for this section has not yet been entered.
static
AsQueryable<TElement>(this IEnumerable<TElement>) : IQueryable<TElement>
Documentation for this section has not yet been entered.
static
Average(this IQueryable<decimal>) : decimal
Documentation for this section has not yet been entered.
static
Average(this IQueryable<double>) : double
Documentation for this section has not yet been entered.
static
Average(this IQueryable<int>) : double
Documentation for this section has not yet been entered.
static
Average(this IQueryable<long>) : double
Documentation for this section has not yet been entered.
static
Average(this IQueryable<Nullable<decimal>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Average(this IQueryable<Nullable<double>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average(this IQueryable<Nullable<int>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average(this IQueryable<Nullable<long>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average(this IQueryable<Nullable<float>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Average(this IQueryable<float>) : float
Documentation for this section has not yet been entered.
static
Average<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, decimal>>) : decimal
Documentation for this section has not yet been entered.
static
Average<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, double>>) : double
Documentation for this section has not yet been entered.
static
Average<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, int>>) : double
Documentation for this section has not yet been entered.
static
Average<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, long>>) : double
Documentation for this section has not yet been entered.
static
Average<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, Nullable<decimal>>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Average<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, Nullable<double>>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, Nullable<int>>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, Nullable<long>>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Average<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, Nullable<float>>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Average<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, float>>) : float
Documentation for this section has not yet been entered.
static
Cast<TResult>(this IQueryable) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
Concat<TSource>(this IQueryable<TSource>, IEnumerable<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Contains<TSource>(this IQueryable<TSource>, TSource) : bool
Documentation for this section has not yet been entered.
static
Contains<TSource>(this IQueryable<TSource>, TSource, IEqualityComparer<TSource>) : bool
Documentation for this section has not yet been entered.
static
Count<TSource>(this IQueryable<TSource>) : int
Documentation for this section has not yet been entered.
static
Count<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : int
Documentation for this section has not yet been entered.
static
DefaultIfEmpty<TSource>(this IQueryable<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
DefaultIfEmpty<TSource>(this IQueryable<TSource>, TSource) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Distinct<TSource>(this IQueryable<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Distinct<TSource>(this IQueryable<TSource>, IEqualityComparer<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
ElementAt<TSource>(this IQueryable<TSource>, int) : TSource
Documentation for this section has not yet been entered.
static
ElementAtOrDefault<TSource>(this IQueryable<TSource>, int) : TSource
Documentation for this section has not yet been entered.
static
Except<TSource>(this IQueryable<TSource>, IEnumerable<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Except<TSource>(this IQueryable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
First<TSource>(this IQueryable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
First<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : TSource
Documentation for this section has not yet been entered.
static
FirstOrDefault<TSource>(this IQueryable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
FirstOrDefault<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : TSource
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>) : IQueryable<IGrouping<TKey, TSource>>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, IEqualityComparer<TKey>) : IQueryable<IGrouping<TKey, TSource>>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TElement>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, System.Linq.Expressions.Expression<Func<TSource, TElement>>) : IQueryable<IGrouping<TKey, TElement>>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TElement>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, System.Linq.Expressions.Expression<Func<TSource, TElement>>, IEqualityComparer<TKey>) : IQueryable<IGrouping<TKey, TElement>>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, System.Linq.Expressions.Expression<Func<TKey, IEnumerable<TSource>,TResult>>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, System.Linq.Expressions.Expression<Func<TKey, IEnumerable<TSource>,TResult>>, IEqualityComparer<TKey>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TElement,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, System.Linq.Expressions.Expression<Func<TSource, TElement>>, System.Linq.Expressions.Expression<Func<TKey, IEnumerable<TElement>,TResult>>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
GroupBy<TSource,TKey,TElement,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, System.Linq.Expressions.Expression<Func<TSource, TElement>>, System.Linq.Expressions.Expression<Func<TKey, IEnumerable<TElement>,TResult>>, IEqualityComparer<TKey>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
GroupJoin<TOuter,TInner,TKey,TResult>(this IQueryable<TOuter>, IEnumerable<TInner>, System.Linq.Expressions.Expression<Func<TOuter, TKey>>, System.Linq.Expressions.Expression<Func<TInner, TKey>>, System.Linq.Expressions.Expression<Func<TOuter, IEnumerable<TInner>,TResult>>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
GroupJoin<TOuter,TInner,TKey,TResult>(this IQueryable<TOuter>, IEnumerable<TInner>, System.Linq.Expressions.Expression<Func<TOuter, TKey>>, System.Linq.Expressions.Expression<Func<TInner, TKey>>, System.Linq.Expressions.Expression<Func<TOuter, IEnumerable<TInner>,TResult>>, IEqualityComparer<TKey>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
Intersect<TSource>(this IQueryable<TSource>, IEnumerable<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Intersect<TSource>(this IQueryable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Join<TOuter,TInner,TKey,TResult>(this IQueryable<TOuter>, IEnumerable<TInner>, System.Linq.Expressions.Expression<Func<TOuter, TKey>>, System.Linq.Expressions.Expression<Func<TInner, TKey>>, System.Linq.Expressions.Expression<Func<TOuter, TInner, TResult>>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
Join<TOuter,TInner,TKey,TResult>(this IQueryable<TOuter>, IEnumerable<TInner>, System.Linq.Expressions.Expression<Func<TOuter, TKey>>, System.Linq.Expressions.Expression<Func<TInner, TKey>>, System.Linq.Expressions.Expression<Func<TOuter, TInner, TResult>>, IEqualityComparer<TKey>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
Last<TSource>(this IQueryable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
Last<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : TSource
Documentation for this section has not yet been entered.
static
LastOrDefault<TSource>(this IQueryable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
LastOrDefault<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : TSource
Documentation for this section has not yet been entered.
static
LongCount<TSource>(this IQueryable<TSource>) : long
Documentation for this section has not yet been entered.
static
LongCount<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : long
Documentation for this section has not yet been entered.
static
Max<TSource>(this IQueryable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
Max<TSource,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TResult>>) : TResult
Documentation for this section has not yet been entered.
static
Min<TSource>(this IQueryable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
Min<TSource,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TResult>>) : TResult
Documentation for this section has not yet been entered.
static
OfType<TResult>(this IQueryable) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
OrderBy<TSource,TKey>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>) : IOrderedQueryable<TSource>
Documentation for this section has not yet been entered.
static
OrderBy<TSource,TKey>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, IComparer<TKey>) : IOrderedQueryable<TSource>
Documentation for this section has not yet been entered.
static
OrderByDescending<TSource,TKey>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>) : IOrderedQueryable<TSource>
Documentation for this section has not yet been entered.
static
OrderByDescending<TSource,TKey>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, IComparer<TKey>) : IOrderedQueryable<TSource>
Documentation for this section has not yet been entered.
static
Reverse<TSource>(this IQueryable<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Select<TSource,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, int, TResult>>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
Select<TSource,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TResult>>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
SelectMany<TSource,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, IEnumerable<TResult>>>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
SelectMany<TSource,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, int, IEnumerable<TResult>>>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
SelectMany<TSource,TCollection,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, IEnumerable<TCollection>>>, System.Linq.Expressions.Expression<Func<TSource, TCollection, TResult>>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
SelectMany<TSource,TCollection,TResult>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, int, IEnumerable<TCollection>>>, System.Linq.Expressions.Expression<Func<TSource, TCollection, TResult>>) : IQueryable<TResult>
Documentation for this section has not yet been entered.
static
SequenceEqual<TSource>(this IQueryable<TSource>, IEnumerable<TSource>) : bool
Documentation for this section has not yet been entered.
static
SequenceEqual<TSource>(this IQueryable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : bool
Documentation for this section has not yet been entered.
static
Single<TSource>(this IQueryable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
Single<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : TSource
Documentation for this section has not yet been entered.
static
SingleOrDefault<TSource>(this IQueryable<TSource>) : TSource
Documentation for this section has not yet been entered.
static
SingleOrDefault<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : TSource
Documentation for this section has not yet been entered.
static
Skip<TSource>(this IQueryable<TSource>, int) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
SkipWhile<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
SkipWhile<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, int, bool>>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Sum(this IQueryable<decimal>) : decimal
Documentation for this section has not yet been entered.
static
Sum(this IQueryable<double>) : double
Documentation for this section has not yet been entered.
static
Sum(this IQueryable<int>) : int
Documentation for this section has not yet been entered.
static
Sum(this IQueryable<long>) : long
Documentation for this section has not yet been entered.
static
Sum(this IQueryable<Nullable<decimal>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Sum(this IQueryable<Nullable<double>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Sum(this IQueryable<Nullable<int>>) : Nullable<int>
Documentation for this section has not yet been entered.
static
Sum(this IQueryable<Nullable<long>>) : Nullable<long>
Documentation for this section has not yet been entered.
static
Sum(this IQueryable<Nullable<float>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Sum(this IQueryable<float>) : float
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, decimal>>) : decimal
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, double>>) : double
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, int>>) : int
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, long>>) : long
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, Nullable<decimal>>>) : Nullable<decimal>
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, Nullable<double>>>) : Nullable<double>
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, Nullable<int>>>) : Nullable<int>
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, Nullable<long>>>) : Nullable<long>
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, Nullable<float>>>) : Nullable<float>
Documentation for this section has not yet been entered.
static
Sum<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, float>>) : float
Documentation for this section has not yet been entered.
static
Take<TSource>(this IQueryable<TSource>, int) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
TakeWhile<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
TakeWhile<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, int, bool>>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
ThenBy<TSource,TKey>(this IOrderedQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>) : IOrderedQueryable<TSource>
Documentation for this section has not yet been entered.
static
ThenBy<TSource,TKey>(this IOrderedQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, IComparer<TKey>) : IOrderedQueryable<TSource>
Documentation for this section has not yet been entered.
static
ThenByDescending<TSource,TKey>(this IOrderedQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>) : IOrderedQueryable<TSource>
Documentation for this section has not yet been entered.
static
ThenByDescending<TSource,TKey>(this IOrderedQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, TKey>>, IComparer<TKey>) : IOrderedQueryable<TSource>
Documentation for this section has not yet been entered.
static
Union<TSource>(this IQueryable<TSource>, IEnumerable<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Union<TSource>(this IQueryable<TSource>, IEnumerable<TSource>, IEqualityComparer<TSource>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Where<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, bool>>) : IQueryable<TSource>
Documentation for this section has not yet been entered.
static
Where<TSource>(this IQueryable<TSource>, System.Linq.Expressions.Expression<Func<TSource, int, bool>>) : IQueryable<TSource>
Documentation for this section has not yet been entered.