// // Queryable.cs // // Authors: // Marek Safar (marek.safar@gmail.com) // Alejandro Serrano "Serras" (trupill@yahoo.es) // Jb Evain (jbevain@novell.com) // Andreas Noever (andreas.noever@gmail.com) // // Copyright (C) 2008 Novell, Inc (http://www.novell.com) // // Permission is hereby granted, free of charge, to any person obtaining // a copy of this software and associated documentation files (the // "Software"), to deal in the Software without restriction, including // without limitation the rights to use, copy, modify, merge, publish, // distribute, sublicense, and/or sell copies of the Software, and to // permit persons to whom the Software is furnished to do so, subject to // the following conditions: // // The above copyright notice and this permission notice shall be // included in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, // EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND // NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE // LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION // OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION // WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // using System; using System.Collections; using System.Collections.Generic; using System.Linq.Expressions; using System.Reflection; using System.Linq; namespace System.Linq { public static class Queryable { static MethodInfo MakeGeneric (MethodBase method, params Type [] parameters) { return ((MethodInfo) method).MakeGenericMethod (parameters); } static Expression StaticCall (MethodInfo method, params Expression [] expressions) { return Expression.Call (null, method, expressions); } static TRet Execute (this IQueryable source, MethodBase current) { return source.Provider.Execute ( StaticCall ( MakeGeneric (current, typeof (TSource)), source.Expression)); } #region Aggregate public static TSource Aggregate (this IQueryable source, Expression> func) { Check.SourceAndFunc (source, func); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (func))); } public static TAccumulate Aggregate (this IQueryable source, TAccumulate seed, Expression> func) { Check.SourceAndFunc (source, func); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TAccumulate)), source.Expression, Expression.Constant (seed), Expression.Quote (func))); } public static TResult Aggregate (this IQueryable source, TAccumulate seed, Expression> func, Expression> selector) { Check.SourceAndFuncAndSelector (source, func, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TAccumulate), typeof (TResult)), source.Expression, Expression.Constant (seed), Expression.Quote (func), Expression.Quote (selector))); } #endregion #region All public static bool All (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region Any public static bool Any (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static bool Any (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region AsQueryable public static IQueryable AsQueryable (this IEnumerable source) { if (source == null) throw new ArgumentNullException ("source"); var queryable = source as IQueryable; if (queryable != null) return queryable; return new QueryableEnumerable (source); } public static IQueryable AsQueryable (this IEnumerable source) { if (source == null) throw new ArgumentNullException ("source"); var queryable = source as IQueryable; if (queryable != null) return queryable; var type = source.GetType (); if (!type.IsGenericImplementationOf (typeof (IEnumerable<>))) throw new ArgumentException ("source is not IEnumerable<>"); return (IQueryable) Activator.CreateInstance ( typeof (QueryableEnumerable<>).MakeGenericType (type.GetFirstGenericArgument ()), source); } #endregion #region Average public static double Average (this IQueryable source) { Check.Source (source); return source.Provider.Execute( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static double? Average(this IQueryable source) { Check.Source (source); return source.Provider.Execute( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static double Average(this IQueryable source) { Check.Source (source); return source.Provider.Execute( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static double? Average(this IQueryable source) { Check.Source (source); return source.Provider.Execute( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static float Average(this IQueryable source) { Check.Source (source); return source.Provider.Execute( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static float? Average(this IQueryable source) { Check.Source (source); return source.Provider.Execute( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static double Average (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static double? Average (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static decimal Average(this IQueryable source) { Check.Source (source); return source.Provider.Execute( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static decimal? Average(this IQueryable source) { Check.Source (source); return source.Provider.Execute( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static double Average(this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static double? Average(this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static double Average(this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static double? Average(this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static float Average(this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static float? Average(this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static double Average (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static double? Average (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static decimal Average(this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static decimal? Average(this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } #endregion #region Cast public static IQueryable Cast (this IQueryable source) { Check.Source (source); return (IQueryable) source.Provider.CreateQuery ( StaticCall (MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TResult)), source.Expression)); } #endregion #region Concat public static IQueryable Concat (this IQueryable source1, IEnumerable source2) { Check.Source1AndSource2 (source1, source2); return source1.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source1.Expression, Expression.Constant (source2))); } #endregion #region Contains public static bool Contains (this IQueryable source, TSource item) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Constant (item))); } public static bool Contains (this IQueryable source, TSource item, IEqualityComparer comparer) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Constant (item), Expression.Constant (comparer))); } #endregion #region Count public static int Count (this IQueryable source) { Check.Source (source); return source.Execute (MethodBase.GetCurrentMethod ()); } public static int Count (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region DefaultIfEmpty public static IQueryable DefaultIfEmpty (this IQueryable source) { Check.Source (source); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static IQueryable DefaultIfEmpty (this IQueryable source, TSource defaultValue) { Check.Source (source); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Constant (defaultValue))); } #endregion #region Distinct public static IQueryable Distinct (this IQueryable source) { Check.Source (source); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static IQueryable Distinct (this IQueryable source, IEqualityComparer comparer) { Check.Source (source); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Constant (comparer))); } #endregion #region ElementAt public static TSource ElementAt (this IQueryable source, int index) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Constant (index))); } #endregion #region ElementAtOrDefault public static TSource ElementAtOrDefault (this IQueryable source, int index) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Constant (index))); } #endregion #region Except public static IQueryable Except (this IQueryable source1, IEnumerable source2) { Check.Source1AndSource2 (source1, source2); return source1.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source1.Expression, Expression.Constant (source2))); } public static IQueryable Except (this IQueryable source1, IEnumerable source2, IEqualityComparer comparer) { Check.Source1AndSource2 (source1, source2); return source1.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source1.Expression, Expression.Constant (source2), Expression.Constant (comparer))); } #endregion #region First public static TSource First (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static TSource First (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region FirstOrDefault public static TSource FirstOrDefault (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static TSource FirstOrDefault (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region GroupBy public static IQueryable> GroupBy (this IQueryable source, Expression> keySelector) { Check.SourceAndKeySelector (source, keySelector); return source.Provider.CreateQuery> ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey)), source.Expression, Expression.Quote (keySelector))); } public static IQueryable> GroupBy (this IQueryable source, Expression> keySelector, IEqualityComparer comparer) { Check.SourceAndKeySelector (source, keySelector); return source.Provider.CreateQuery> ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey)), source.Expression, Expression.Quote (keySelector), Expression.Constant (comparer))); } public static IQueryable> GroupBy (this IQueryable source, Expression> keySelector, Expression> elementSelector) { Check.SourceAndKeyElementSelectors (source, keySelector, elementSelector); return source.Provider.CreateQuery>( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey), typeof (TElement)), source.Expression, Expression.Quote (keySelector), Expression.Quote (elementSelector))); } public static IQueryable GroupBy (this IQueryable source, Expression> keySelector, Expression, TResult>> resultSelector) { Check.SourceAndKeyResultSelectors (source, keySelector, resultSelector); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey), typeof (TResult)), source.Expression, Expression.Quote (keySelector), Expression.Quote (resultSelector))); } public static IQueryable> GroupBy (this IQueryable source, Expression> keySelector, Expression> elementSelector, IEqualityComparer comparer) { Check.SourceAndKeyElementSelectors (source, keySelector, elementSelector); return source.Provider.CreateQuery> ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey), typeof (TElement)), source.Expression, Expression.Quote (keySelector), Expression.Quote (elementSelector), Expression.Constant (comparer))); } public static IQueryable GroupBy (this IQueryable source, Expression> keySelector, Expression> elementSelector, Expression, TResult>> resultSelector) { Check.GroupBySelectors (source, keySelector, elementSelector, resultSelector); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey), typeof (TElement), typeof (TResult)), source.Expression, Expression.Quote (keySelector), Expression.Quote (elementSelector), Expression.Quote (resultSelector))); } public static IQueryable GroupBy (this IQueryable source, Expression> keySelector, Expression, TResult>> resultSelector, IEqualityComparer comparer) { Check.SourceAndKeyResultSelectors (source, keySelector, resultSelector); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey), typeof (TResult)), source.Expression, Expression.Quote (keySelector), Expression.Quote (resultSelector), Expression.Constant (comparer))); } public static IQueryable GroupBy (this IQueryable source, Expression> keySelector, Expression> elementSelector, Expression, TResult>> resultSelector, IEqualityComparer comparer) { Check.GroupBySelectors (source, keySelector, elementSelector, resultSelector); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey), typeof (TElement), typeof (TResult)), source.Expression, Expression.Quote (keySelector), Expression.Quote (elementSelector), Expression.Quote (resultSelector), Expression.Constant (comparer))); } #endregion #region GroupJoin public static IQueryable GroupJoin (this IQueryable outer, IEnumerable inner, Expression> outerKeySelector, Expression> innerKeySelector, Expression, TResult>> resultSelector) { if (outer == null) throw new ArgumentNullException ("outer"); if (inner == null) throw new ArgumentNullException ("inner"); if (outerKeySelector == null) throw new ArgumentNullException ("outerKeySelector"); if (innerKeySelector == null) throw new ArgumentNullException ("innerKeySelector"); if (resultSelector == null) throw new ArgumentNullException ("resultSelector"); return outer.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TOuter), typeof (TInner), typeof (TKey), typeof (TResult)), outer.Expression, Expression.Constant (inner), Expression.Quote (outerKeySelector), Expression.Quote (innerKeySelector), Expression.Quote (resultSelector))); } public static IQueryable GroupJoin (this IQueryable outer, IEnumerable inner, Expression> outerKeySelector, Expression> innerKeySelector, Expression, TResult>> resultSelector, IEqualityComparer comparer) { if (outer == null) throw new ArgumentNullException ("outer"); if (inner == null) throw new ArgumentNullException ("inner"); if (outerKeySelector == null) throw new ArgumentNullException ("outerKeySelector"); if (innerKeySelector == null) throw new ArgumentNullException ("innerKeySelector"); if (resultSelector == null) throw new ArgumentNullException ("resultSelector"); return outer.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TOuter), typeof (TInner), typeof (TKey), typeof (TResult)), outer.Expression, Expression.Constant (inner), Expression.Quote (outerKeySelector), Expression.Quote (innerKeySelector), Expression.Quote (resultSelector), Expression.Constant (comparer))); } #endregion #region Intersect public static IQueryable Intersect (this IQueryable source1, IEnumerable source2) { Check.Source1AndSource2 (source1, source2); return source1.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source1.Expression, Expression.Constant (source2))); } public static IQueryable Intersect (this IQueryable source1, IEnumerable source2, IEqualityComparer comparer) { Check.Source1AndSource2 (source1, source2); return source1.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source1.Expression, Expression.Constant (source2), Expression.Constant (comparer))); } #endregion #region Join public static IQueryable Join (this IQueryable outer, IEnumerable inner, Expression> outerKeySelector, Expression> innerKeySelector, Expression> resultSelector) { Check.JoinSelectors (outer, inner, outerKeySelector, innerKeySelector, resultSelector); return outer.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TOuter), typeof (TInner), typeof (TKey), typeof (TResult)), outer.Expression, Expression.Constant (inner), Expression.Quote (outerKeySelector), Expression.Quote (innerKeySelector), Expression.Quote (resultSelector))); } public static IQueryable Join (this IQueryable outer, IEnumerable inner, Expression> outerKeySelector, Expression> innerKeySelector, Expression> resultSelector, IEqualityComparer comparer) { Check.JoinSelectors (outer, inner, outerKeySelector, innerKeySelector, resultSelector); return outer.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TOuter), typeof (TInner), typeof (TKey), typeof (TResult)), outer.Expression, Expression.Constant (inner), Expression.Quote (outerKeySelector), Expression.Quote (innerKeySelector), Expression.Quote (resultSelector), Expression.Constant (comparer))); } #endregion #region Last public static TSource Last (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static TSource Last (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region LastOrDefault public static TSource LastOrDefault (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static TSource LastOrDefault (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region LongCount public static long LongCount (this IQueryable source) { Check.Source (source); return source.Execute (MethodBase.GetCurrentMethod ()); } public static long LongCount (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region Max public static TSource Max (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static TResult Max (this IQueryable source, Expression> selector) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TResult)), source.Expression, Expression.Quote (selector))); } #endregion #region Min public static TSource Min (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static TResult Min (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TResult)), source.Expression, Expression.Quote (selector))); } #endregion #region OfType public static IQueryable OfType (this IQueryable source) { Check.Source (source); return (IQueryable) source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TResult)), source.Expression)); } #endregion #region OrderBy public static IOrderedQueryable OrderBy (this IQueryable source, Expression> keySelector) { Check.SourceAndKeySelector (source, keySelector); return (IOrderedQueryable) source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey)), source.Expression, Expression.Quote (keySelector))); } public static IOrderedQueryable OrderBy (this IQueryable source, Expression> keySelector, IComparer comparer) { Check.SourceAndKeySelector (source, keySelector); return (IOrderedQueryable) source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey)), source.Expression, Expression.Quote (keySelector), Expression.Constant (comparer))); } #endregion #region OrderByDescending public static IOrderedQueryable OrderByDescending (this IQueryable source, Expression> keySelector) { Check.SourceAndKeySelector (source, keySelector); return (IOrderedQueryable) source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey)), source.Expression, Expression.Quote (keySelector))); } public static IOrderedQueryable OrderByDescending (this IQueryable source, Expression> keySelector, IComparer comparer) { Check.SourceAndKeySelector (source, keySelector); return (IOrderedQueryable) source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey)), source.Expression, Expression.Quote (keySelector), Expression.Constant (comparer))); } #endregion #region Reverse public static IQueryable Reverse (this IQueryable source) { Check.Source (source); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } #endregion #region Select public static IQueryable Select (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TResult)), source.Expression, Expression.Quote (selector))); } public static IQueryable Select (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TResult)), source.Expression, Expression.Quote (selector))); } #endregion #region SelectMany public static IQueryable SelectMany (this IQueryable source, Expression>> selector) { Check.SourceAndSelector (source, selector); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TResult)), source.Expression, Expression.Quote (selector))); } public static IQueryable SelectMany (this IQueryable source, Expression>> selector) { Check.SourceAndSelector (source, selector); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TResult)), source.Expression, Expression.Quote (selector))); } public static IQueryable SelectMany (this IQueryable source, Expression>> collectionSelector, Expression> resultSelector) { Check.SourceAndCollectionSelectorAndResultSelector (source, collectionSelector, resultSelector); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TCollection), typeof (TResult)), source.Expression, Expression.Quote (collectionSelector), Expression.Quote (resultSelector))); } public static IQueryable SelectMany (this IQueryable source, Expression>> collectionSelector, Expression> resultSelector) { Check.SourceAndCollectionSelectorAndResultSelector (source, collectionSelector, resultSelector); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TCollection), typeof (TResult)), source.Expression, Expression.Quote (collectionSelector), Expression.Quote (resultSelector))); } #endregion #region SequenceEqual public static bool SequenceEqual (this IQueryable source1, IEnumerable source2) { Check.Source1AndSource2 (source1, source2); return source1.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source1.Expression, Expression.Constant (source2))); } public static bool SequenceEqual (this IQueryable source1, IEnumerable source2, IEqualityComparer comparer) { Check.Source1AndSource2 (source1, source2); return source1.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source1.Expression, Expression.Constant (source2), Expression.Constant (comparer))); } #endregion #region Single public static TSource Single (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static TSource Single (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region SingleOrDefault public static TSource SingleOrDefault (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression)); } public static TSource SingleOrDefault (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region Skip public static IQueryable Skip (this IQueryable source, int count) { Check.Source (source); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Constant (count))); } #endregion #region SkipWhile public static IQueryable SkipWhile (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } public static IQueryable SkipWhile (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region Sum public static int Sum (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static int? Sum (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static long Sum (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static long? Sum (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static float Sum (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static float? Sum (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static double Sum (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static double? Sum (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static decimal Sum (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static decimal? Sum (this IQueryable source, Expression> selector) { Check.SourceAndSelector (source, selector); return source.Provider.Execute ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (selector))); } public static int Sum (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static int? Sum (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static long Sum (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static long? Sum (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static float Sum (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static float? Sum (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static double Sum (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static double? Sum (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static decimal Sum (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } public static decimal? Sum (this IQueryable source) { Check.Source (source); return source.Provider.Execute ( StaticCall ( (MethodInfo) MethodBase.GetCurrentMethod (), source.Expression)); } #endregion #region Take public static IQueryable Take (this IQueryable source, int count) { Check.Source (source); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Constant (count))); } #endregion #region TakeWhile public static IQueryable TakeWhile (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } public static IQueryable TakeWhile (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion #region ThenBy public static IOrderedQueryable ThenBy (this IOrderedQueryable source, Expression> keySelector) { Check.SourceAndKeySelector (source, keySelector); return (IOrderedQueryable) source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey)), source.Expression, Expression.Quote (keySelector))); } public static IOrderedQueryable ThenBy (this IOrderedQueryable source, Expression> keySelector, IComparer comparer) { Check.SourceAndKeySelector (source, keySelector); return (IOrderedQueryable) source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey)), source.Expression, Expression.Quote (keySelector), Expression.Constant (comparer))); } #endregion #region ThenByDescending public static IOrderedQueryable ThenByDescending (this IOrderedQueryable source, Expression> keySelector) { Check.SourceAndKeySelector (source, keySelector); return (IOrderedQueryable) source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey)), source.Expression, Expression.Quote (keySelector))); } public static IOrderedQueryable ThenByDescending (this IOrderedQueryable source, Expression> keySelector, IComparer comparer) { Check.SourceAndKeySelector (source, keySelector); return (IOrderedQueryable) source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource), typeof (TKey)), source.Expression, Expression.Quote (keySelector), Expression.Constant (comparer))); } #endregion #region Union public static IQueryable Union (this IQueryable source1, IEnumerable source2) { Check.Source1AndSource2 (source1, source2); return source1.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source1.Expression, Expression.Constant (source2))); } public static IQueryable Union(this IQueryable source1, IEnumerable source2, IEqualityComparer comparer) { Check.Source1AndSource2 (source1, source2); return source1.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source1.Expression, Expression.Constant (source2), Expression.Constant (comparer))); } #endregion #region Where public static IQueryable Where (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } public static IQueryable Where (this IQueryable source, Expression> predicate) { Check.SourceAndPredicate (source, predicate); return source.Provider.CreateQuery ( StaticCall ( MakeGeneric (MethodBase.GetCurrentMethod (), typeof (TSource)), source.Expression, Expression.Quote (predicate))); } #endregion } }