Class QueryableDefaults.NonLeafReplayableQueryable<T>
- Type Parameters:
- T- element type
- All Implemented Interfaces:
- Iterable<T>,- Enumerable<T>,- ExtendedEnumerable<T>,- ExtendedOrderedEnumerable<T>,- ExtendedOrderedQueryable<T>,- OrderedEnumerable<T>,- OrderedQueryable<T>,- Queryable<T>,- QueryableDefaults.Replayable<T>,- RawEnumerable<T>,- RawQueryable<T>
- Enclosing class:
- QueryableDefaults
- 
Constructor SummaryConstructors
- 
Method SummaryModifier and TypeMethodDescriptionApplies an accumulator function over a sequence.<TAccumulate>
 TAccumulateaggregate(TAccumulate seed, FunctionExpression<Function2<TAccumulate, T, TAccumulate>> selector) <TAccumulate,TResult> 
 TResultaggregate(TAccumulate seed, FunctionExpression<Function2<TAccumulate, T, TAccumulate>> func, FunctionExpression<Function1<TAccumulate, TResult>> selector) <TAccumulate>
 TAccumulateaggregate(TAccumulate seed, FunctionExpression<Function2<TAccumulate, T, TAccumulate>> selector) Applies an accumulator function over a sequence.<TAccumulate,TResult> 
 TResultaggregate(TAccumulate seed, FunctionExpression<Function2<TAccumulate, T, TAccumulate>> func, FunctionExpression<Function1<TAccumulate, TResult>> selector) Applies an accumulator function over a sequence.booleanall(FunctionExpression<Predicate1<T>> predicate) booleanall(FunctionExpression<Predicate1<T>> predicate) Determines whether all the elements of a sequence satisfy a condition.booleanany(FunctionExpression<Predicate1<T>> predicate) booleanany(FunctionExpression<Predicate1<T>> predicate) Determines whether any element of a sequence satisfies a condition.Returns the input typed asEnumerable<TSource>.Converts this Enumerable to a Queryable.averageBigDecimal(FunctionExpression<BigDecimalFunction1<T>> selector) averageBigDecimal(FunctionExpression<BigDecimalFunction1<T>> selector) Computes the average of a sequence of Decimal values that is obtained by invoking a projection function on each element of the input sequence.doubleaverageDouble(FunctionExpression<DoubleFunction1<T>> selector) doubleaverageDouble(FunctionExpression<DoubleFunction1<T>> selector) Computes the average of a sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.floataverageFloat(FunctionExpression<FloatFunction1<T>> selector) floataverageFloat(FunctionExpression<FloatFunction1<T>> selector) Computes the average of a sequence of Float values that is obtained by invoking a projection function on each element of the input sequence.intaverageInteger(FunctionExpression<IntegerFunction1<T>> selector) intaverageInteger(FunctionExpression<IntegerFunction1<T>> selector) Computes the average of a sequence of int values that is obtained by invoking a projection function on each element of the input sequence.longaverageLong(FunctionExpression<LongFunction1<T>> selector) longaverageLong(FunctionExpression<LongFunction1<T>> selector) Computes the average of a sequence of long values that is obtained by invoking a projection function on each element of the input sequence.Computes the average of a sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence.Computes the average of a sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence.Computes the average of a sequence of nullable Float values that is obtained by invoking a projection function on each element of the input sequence.Computes the average of a sequence of nullable int values that is obtained by invoking a projection function on each element of the input sequence.averageNullableLong(FunctionExpression<NullableLongFunction1<T>> selector) averageNullableLong(FunctionExpression<NullableLongFunction1<T>> selector) Computes the average of a sequence of nullable long values that is obtained by invoking a projection function on each element of the input sequence.<T2> Queryable<T2>Converts the elements of this Enumerable to the specified type.<T2> Queryable<T2>Converts the elements of this Enumerable to the specified type.concat(Enumerable<T> source2) Concatenates two sequences.concat(Enumerable<T> source2) Concatenates two sequences.intcount(FunctionExpression<Predicate1<T>> func) intcount(FunctionExpression<Predicate1<T>> predicate) Returns the number of elements in the specified sequence that satisfies a condition.Returns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty.Returns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty.distinct()Returns distinct elements from a sequence by using the default equality comparer to compare values.distinct()Returns distinct elements from a sequence by using the default equality comparer to compare values.distinct(EqualityComparer<T> comparer) Returns distinct elements from a sequence by using a specifiedEqualityComparer<TSource>to compare values.distinct(EqualityComparer<T> comparer) Returns distinct elements from a sequence by using a specified EqualityComparer<TSource> to compare values.except(Enumerable<T> enumerable1) Produces the set difference of two sequences by using the default equality comparer to compare values, eliminate duplicates.except(Enumerable<T> enumerable1, boolean all) Produces the set difference of two sequences by using the default equality comparer to compare values, usingallto indicate whether to eliminate duplicates.except(Enumerable<T> enumerable1, EqualityComparer<T> comparer) Produces the set difference of two sequences by using the specifiedEqualityComparer<TSource>to compare values, eliminate duplicates.except(Enumerable<T> enumerable1, EqualityComparer<T> comparer, boolean all) Produces the set difference of two sequences by using the specifiedEqualityComparer<TSource>to compare values, usingallto indicate whether to eliminate duplicates.except(Enumerable<T> enumerable) Produces the set difference of two sequences by using the default equality comparer to compare values, eliminate duplicates.except(Enumerable<T> enumerable, boolean all) Produces the set difference of two sequences by using the default equality comparer to compare values, usingallto indicate whether to eliminate duplicates.except(Enumerable<T> enumerable, EqualityComparer<T> comparer) Produces the set difference of two sequences by using the specifiedEqualityComparer<TSource>to compare values, eliminate duplicates.except(Enumerable<T> enumerable, EqualityComparer<T> comparer, boolean all) Produces the set difference of two sequences by using the specifiedEqualityComparer<TSource>to compare values, usingallto indicate whether to eliminate duplicates.first(FunctionExpression<Predicate1<T>> predicate) first(FunctionExpression<Predicate1<T>> predicate) Returns the first element of a sequence that satisfies a specified condition.firstOrDefault(FunctionExpression<Predicate1<T>> predicate) firstOrDefault(FunctionExpression<Predicate1<T>> predicate) Returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.Gets the type of the element(s) that are returned when the expression tree associated with this Queryable is executed.@Nullable ExpressionGets the expression tree that is associated with this Queryable.Gets the query provider that is associated with this data source.getThis()Derived classes might wish to override this method to return the "outer" enumerable.protected OrderedQueryable<T>groupBy(FunctionExpression<Function1<T, TKey>> keySelector) groupBy(FunctionExpression<Function1<T, TKey>> keySelector, EqualityComparer<TKey> comparer) groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector) groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, EqualityComparer<TKey> comparer) <TKey,TElement, TResult> 
 Queryable<TResult>groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, FunctionExpression<Function2<TKey, Enumerable<TElement>, TResult>> resultSelector) <TKey,TElement, TResult> 
 Queryable<TResult>groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, FunctionExpression<Function2<TKey, Enumerable<TElement>, TResult>> resultSelector, EqualityComparer<TKey> comparer) groupBy(FunctionExpression<Function1<T, TKey>> keySelector) Groups the elements of a sequence according to a specified key selector function.groupBy(FunctionExpression<Function1<T, TKey>> keySelector, EqualityComparer<TKey> comparer) Groups the elements of a sequence according to a specified key selector function and compares the keys by using a specified comparer.groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector) Groups the elements of a sequence according to a specified key selector function and projects the elements for each group by using a specified function.groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, EqualityComparer<TKey> comparer) Groups the elements of a sequence and projects the elements for each group by using a specified function.<TKey,TElement, TResult> 
 Queryable<TResult>groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, FunctionExpression<Function2<TKey, Enumerable<TElement>, TResult>> resultSelector) Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key.<TKey,TElement, TResult> 
 Queryable<TResult>groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, FunctionExpression<Function2<TKey, Enumerable<TElement>, TResult>> resultSelector, EqualityComparer<TKey> comparer) Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key.<TKey,TResult> 
 Queryable<TResult>groupByK(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function2<TKey, Enumerable<T>, TResult>> resultSelector) <TKey,TResult> 
 Queryable<TResult>groupByK(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function2<TKey, Enumerable<T>, TResult>> resultSelector, EqualityComparer<TKey> comparer) <TKey,TResult> 
 Queryable<TResult>groupByK(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function2<TKey, Enumerable<T>, TResult>> resultSelector) Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key.<TKey,TResult> 
 Queryable<TResult>groupByK(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function2<TKey, Enumerable<T>, TResult>> resultSelector, EqualityComparer<TKey> comparer) Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key.<TInner,TKey, TResult> 
 Queryable<TResult>groupJoin(Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, Enumerable<TInner>, TResult>> resultSelector) <TInner,TKey, TResult> 
 Queryable<TResult>groupJoin(Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, Enumerable<TInner>, TResult>> resultSelector, EqualityComparer<TKey> comparer) <TInner,TKey, TResult> 
 Queryable<TResult>groupJoin(Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, Enumerable<TInner>, TResult>> resultSelector) Correlates the elements of two sequences based on key equality and groups the results.<TInner,TKey, TResult> 
 Queryable<TResult>groupJoin(Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, Enumerable<TInner>, TResult>> resultSelector, EqualityComparer<TKey> comparer) Correlates the elements of two sequences based on key equality and groups the results.intersect(Enumerable<T> source1) Produces the set intersection of two sequences by using the default equality comparer to compare values, eliminate duplicates.intersect(Enumerable<T> source1, boolean all) Produces the set intersection of two sequences by using the default equality comparer to compare values, usingallto indicate whether to eliminate duplicates.intersect(Enumerable<T> source1, EqualityComparer<T> comparer) Produces the set intersection of two sequences by using the specifiedEqualityComparer<TSource>to compare values, eliminate duplicates.intersect(Enumerable<T> source1, EqualityComparer<T> comparer, boolean all) Produces the set intersection of two sequences by using the specifiedEqualityComparer<TSource>to compare values, usingallto indicate whether to eliminate duplicates.intersect(Enumerable<T> enumerable) Produces the set intersection of two sequences by using the default equality comparer to compare values, eliminate duplicates.(Defined by Queryable.)intersect(Enumerable<T> enumerable, boolean all) Produces the set intersection of two sequences by using the default equality comparer to compare values, usingallto indicate whether to eliminate duplicates.intersect(Enumerable<T> enumerable, EqualityComparer<T> comparer) Produces the set intersection of two sequences by using the specifiedEqualityComparer<TSource>to compare values, eliminate duplicates.intersect(Enumerable<T> enumerable, EqualityComparer<T> comparer, boolean all) Produces the set intersection of two sequences by using the specifiedEqualityComparer<TSource>to compare values, usingallto indicate whether to eliminate duplicates.<TInner,TKey, TResult> 
 Queryable<TResult>join(Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, TInner, TResult>> resultSelector) <TInner,TKey, TResult> 
 Queryable<TResult>join(Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, TInner, TResult>> resultSelector, EqualityComparer<TKey> comparer) <TInner,TKey, TResult> 
 Queryable<TResult>join(Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, TInner, TResult>> resultSelector) Correlates the elements of two sequences based on matching keys.<TInner,TKey, TResult> 
 Queryable<TResult>join(Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, TInner, TResult>> resultSelector, EqualityComparer<TKey> comparer) Correlates the elements of two sequences based on matching keys.last(FunctionExpression<Predicate1<T>> predicate) last(FunctionExpression<Predicate1<T>> predicate) Returns the last element of a sequence that satisfies a specified condition.lastOrDefault(FunctionExpression<Predicate1<T>> predicate) lastOrDefault(FunctionExpression<Predicate1<T>> predicate) Returns the last element of a sequence that satisfies a condition or a default value if no such element is found.longlongCount(FunctionExpression<Predicate1<T>> predicate) longlongCount(FunctionExpression<Predicate1<T>> predicate) Returns an long that represents the number of elements in a sequence that satisfy a condition.<TResult extends Comparable<TResult>>
 TResultmax(FunctionExpression<Function1<T, TResult>> selector) <TResult extends Comparable<TResult>>
 @Nullable TResultmax(FunctionExpression<Function1<T, TResult>> selector) Invokes a projection function on each element of a genericIQueryable<TSource>and returns the maximum resulting value.<TResult extends Comparable<TResult>>
 TResultmin(FunctionExpression<Function1<T, TResult>> selector) <TResult extends Comparable<TResult>>
 @Nullable TResultmin(FunctionExpression<Function1<T, TResult>> selector) Invokes a projection function on each element of a genericIQueryable<TSource>and returns the minimum resulting value.<TResult> Queryable<TResult>Filters the elements of an Enumerable based on a specified type.<TResult> Queryable<TResult>Filters the elements of an IQueryable based on a specified type.<TKey extends Comparable>
 OrderedQueryable<T>orderBy(FunctionExpression<Function1<T, TKey>> keySelector) <TKey> OrderedQueryable<T>orderBy(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) <TKey extends Comparable>
 OrderedQueryable<T>orderBy(FunctionExpression<Function1<T, TKey>> keySelector) Sorts the elements of a sequence in ascending order according to a key.<TKey> OrderedQueryable<T>orderBy(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) Sorts the elements of a sequence in ascending order by using a specified comparer.<TKey extends Comparable>
 OrderedQueryable<T>orderByDescending(FunctionExpression<Function1<T, TKey>> keySelector) <TKey> OrderedQueryable<T>orderByDescending(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) <TKey extends Comparable>
 OrderedQueryable<T>orderByDescending(FunctionExpression<Function1<T, TKey>> keySelector) Sorts the elements of a sequence in descending order according to a key.<TKey> OrderedQueryable<T>orderByDescending(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) Sorts the elements of a sequence in descending order by using a specified comparer.reverse()Inverts the order of the elements in a sequence.reverse()Inverts the order of the elements in a sequence.<TResult> Queryable<TResult>select(FunctionExpression<Function1<T, TResult>> selector) <TResult> Queryable<TResult>select(FunctionExpression<Function1<T, TResult>> selector) Projects each element of a sequence into a new form.<TResult> Queryable<TResult>selectMany(FunctionExpression<Function1<T, Enumerable<TResult>>> selector) <TResult> Queryable<TResult>selectMany(FunctionExpression<Function1<T, Enumerable<TResult>>> selector) Projects each element of a sequence to anEnumerable<TSource>and combines the resulting sequences into one sequence.<TCollection,TResult> 
 Queryable<TResult>selectMany(FunctionExpression<Function2<T, Integer, Enumerable<TCollection>>> collectionSelector, FunctionExpression<Function2<T, TCollection, TResult>> resultSelector) <TCollection,TResult> 
 Queryable<TResult>selectMany(FunctionExpression<Function2<T, Integer, Enumerable<TCollection>>> collectionSelector, FunctionExpression<Function2<T, TCollection, TResult>> resultSelector) Projects each element of a sequence to anEnumerable<TSource>that incorporates the index of the source element that produced it.<TCollection,TResult> 
 Queryable<TResult>selectManyN(FunctionExpression<Function1<T, Enumerable<TCollection>>> collectionSelector, FunctionExpression<Function2<T, TCollection, TResult>> resultSelector) <TCollection,TResult> 
 Queryable<TResult>selectManyN(FunctionExpression<Function1<T, Enumerable<TCollection>>> collectionSelector, FunctionExpression<Function2<T, TCollection, TResult>> resultSelector) Projects each element of a sequence to anEnumerable<TSource>and invokes a result selector function on each element therein.<TResult> Queryable<TResult>selectManyN(FunctionExpression<Function2<T, Integer, Enumerable<TResult>>> selector) <TResult> Queryable<TResult>selectManyN(FunctionExpression<Function2<T, Integer, Enumerable<TResult>>> selector) Projects each element of a sequence to anEnumerable<TSource>and combines the resulting sequences into one sequence.<TResult> Queryable<TResult>selectN(FunctionExpression<Function2<T, Integer, TResult>> selector) <TResult> Queryable<TResult>selectN(FunctionExpression<Function2<T, Integer, TResult>> selector) Projects each element of a sequence into a new form by incorporating the element's index.single(FunctionExpression<Predicate1<T>> predicate) single(FunctionExpression<Predicate1<T>> predicate) Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.Returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence.singleOrDefault(FunctionExpression<Predicate1<T>> predicate) singleOrDefault(FunctionExpression<Predicate1<T>> predicate) Returns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition.skip(int count) Bypasses a specified number of elements in a sequence and then returns the remaining elements.skip(int count) Bypasses a specified number of elements in a sequence and then returns the remaining elements.skipWhile(FunctionExpression<Predicate1<T>> predicate) skipWhile(FunctionExpression<Predicate1<T>> predicate) Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.skipWhileN(FunctionExpression<Predicate2<T, Integer>> predicate) skipWhileN(FunctionExpression<Predicate2<T, Integer>> predicate) Bypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.sumBigDecimal(FunctionExpression<BigDecimalFunction1<T>> selector) sumBigDecimal(FunctionExpression<BigDecimalFunction1<T>> selector) Computes the sum of the sequence of Decimal values that is obtained by invoking a projection function on each element of the input sequence.doublesumDouble(FunctionExpression<DoubleFunction1<T>> selector) doublesumDouble(FunctionExpression<DoubleFunction1<T>> selector) Computes the sum of the sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.floatsumFloat(FunctionExpression<FloatFunction1<T>> selector) floatsumFloat(FunctionExpression<FloatFunction1<T>> selector) Computes the sum of the sequence of Float values that is obtained by invoking a projection function on each element of the input sequence.intsumInteger(FunctionExpression<IntegerFunction1<T>> selector) intsumInteger(FunctionExpression<IntegerFunction1<T>> selector) Computes the sum of the sequence of int values that is obtained by invoking a projection function on each element of the input sequence.longsumLong(FunctionExpression<LongFunction1<T>> selector) longsumLong(FunctionExpression<LongFunction1<T>> selector) Computes the sum of the sequence of long values that is obtained by invoking a projection function on each element of the input sequence.Computes the sum of the sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence.sumNullableDouble(FunctionExpression<NullableDoubleFunction1<T>> selector) sumNullableDouble(FunctionExpression<NullableDoubleFunction1<T>> selector) Computes the sum of the sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence.sumNullableFloat(FunctionExpression<NullableFloatFunction1<T>> selector) sumNullableFloat(FunctionExpression<NullableFloatFunction1<T>> selector) Computes the sum of the sequence of nullable Float values that is obtained by invoking a projection function on each element of the input sequence.Computes the sum of the sequence of nullable int values that is obtained by invoking a projection function on each element of the input sequence.sumNullableLong(FunctionExpression<NullableLongFunction1<T>> selector) sumNullableLong(FunctionExpression<NullableLongFunction1<T>> selector) Computes the sum of the sequence of nullable long values that is obtained by invoking a projection function on each element of the input sequence.take(int count) Returns a specified number of contiguous elements from the start of a sequence.take(int count) Returns a specified number of contiguous elements from the start of a sequence.takeWhile(FunctionExpression<Predicate1<T>> predicate) takeWhile(FunctionExpression<Predicate1<T>> predicate) Returns elements from a sequence as long as a specified condition is true.takeWhileN(FunctionExpression<Predicate2<T, Integer>> predicate) takeWhileN(FunctionExpression<Predicate2<T, Integer>> predicate) Returns elements from a sequence as long as a specified condition is true.<TKey extends Comparable<TKey>>
 OrderedQueryable<T>thenBy(FunctionExpression<Function1<T, TKey>> keySelector) Performs a subsequent ordering of the elements in a sequence in ascending order according to a key.<TKey> OrderedQueryable<T>thenBy(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) Performs a subsequent ordering of the elements in a sequence in ascending order according to a key, using a specified comparator.<TKey extends Comparable<TKey>>
 OrderedQueryable<T>thenByDescending(FunctionExpression<Function1<T, TKey>> keySelector) Performs a subsequent ordering of the elements in a sequence in descending order according to a key.<TKey> OrderedQueryable<T>thenByDescending(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) Performs a subsequent ordering of the elements in a sequence in descending order according to a key, using a specified comparator.union(Enumerable<T> source1) Produces the set union of two sequences by using the default equality comparer.union(Enumerable<T> source1, EqualityComparer<T> comparer) Produces the set union of two sequences by using a specifiedEqualityComparer<TSource>.union(Enumerable<T> source1) Produces the set union of two sequences by using the default equality comparer.union(Enumerable<T> source1, EqualityComparer<T> comparer) Produces the set union of two sequences by using a specifiedEqualityComparer<TSource>.where(FunctionExpression<? extends Predicate1<T>> predicate) where(FunctionExpression<? extends Predicate1<T>> predicate) Filters a sequence of values based on a predicate.whereN(FunctionExpression<? extends Predicate2<T, Integer>> predicate) whereN(FunctionExpression<? extends Predicate2<T, Integer>> predicate) Filters a sequence of values based on a predicate.<T1,TResult> 
 Queryable<TResult>zip(Enumerable<T1> source1, FunctionExpression<Function2<T, T1, TResult>> resultSelector) <T1,TResult> 
 Queryable<TResult>zip(Enumerable<T1> source1, FunctionExpression<Function2<T, T1, TResult>> resultSelector) Merges two sequences by using the specified predicate function.Methods inherited from class org.apache.calcite.linq4j.QueryableDefaults.ReplayableQueryablecastQueryable, enumerator, iterator, replayMethods inherited from class org.apache.calcite.linq4j.DefaultEnumerableaggregate, aggregate, aggregate, all, any, any, asofJoin, asOrderedQueryable, average, average, average, average, average, average, average, average, average, average, contains, contains, correlateJoin, count, count, createOrderedEnumerable, defaultIfEmpty, elementAt, elementAtOrDefault, first, first, firstOrDefault, firstOrDefault, foreach, getThisOrdered, groupBy, groupBy, groupBy, groupBy, groupBy, groupBy, groupBy, groupBy, groupBy, groupBy, groupJoin, groupJoin, hashJoin, hashJoin, hashJoin, hashJoin, into, last, last, lastOrDefault, lastOrDefault, longCount, longCount, max, max, max, max, max, max, max, max, max, max, max, max, min, min, min, min, min, min, min, min, min, min, min, min, orderBy, orderBy, orderByDescending, orderByDescending, removeAll, select, select, selectMany, selectMany, selectMany, selectMany, sequenceEqual, sequenceEqual, single, single, singleOrDefault, singleOrDefault, skipWhile, skipWhile, sortedGroupBy, sum, sum, sum, sum, sum, sum, sum, sum, sum, sum, takeWhile, takeWhile, thenBy, thenBy, thenByDescending, thenByDescending, toList, toLookup, toLookup, toLookup, toLookup, toMap, toMap, toMap, toMap, where, where, zipMethods inherited from class java.lang.Objectclone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.apache.calcite.linq4j.EnumerableasQueryableMethods inherited from interface org.apache.calcite.linq4j.ExtendedEnumerableaggregate, aggregate, aggregate, all, any, any, asEnumerable, asofJoin, average, average, average, average, average, average, average, average, average, average, contains, contains, correlateJoin, count, count, defaultIfEmpty, elementAt, elementAtOrDefault, first, first, firstOrDefault, firstOrDefault, foreach, groupBy, groupBy, groupBy, groupBy, groupBy, groupBy, groupBy, groupBy, groupBy, groupBy, groupJoin, groupJoin, hashJoin, hashJoin, hashJoin, hashJoin, into, last, last, lastOrDefault, lastOrDefault, longCount, longCount, max, max, max, max, max, max, max, max, max, max, max, max, min, min, min, min, min, min, min, min, min, min, min, min, orderBy, orderBy, orderByDescending, orderByDescending, removeAll, select, select, selectMany, selectMany, selectMany, selectMany, sequenceEqual, sequenceEqual, single, single, singleOrDefault, skipWhile, skipWhile, sortedGroupBy, sum, sum, sum, sum, sum, sum, sum, sum, sum, sum, takeWhile, takeWhile, toList, toLookup, toLookup, toLookup, toLookup, toMap, toMap, toMap, toMap, where, where, zipMethods inherited from interface java.lang.IterableforEach, spliterator
- 
Constructor Details- 
NonLeafReplayableQueryable
 
- 
- 
Method Details- 
getElementTypeDescription copied from interface:RawQueryableGets the type of the element(s) that are returned when the expression tree associated with this Queryable is executed.
- 
getExpressionDescription copied from interface:RawQueryableGets the expression tree that is associated with this Queryable.- Returns:
- null if the expression is not available
 
- 
getProviderDescription copied from interface:RawQueryableGets the query provider that is associated with this data source.
- 
aggregateApplies an accumulator function over a sequence.
- 
aggregate<TAccumulate> TAccumulate aggregate(TAccumulate seed, FunctionExpression<Function2<TAccumulate, T, TAccumulate>> selector) Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value.
- 
aggregate<TAccumulate,TResult> TResult aggregate(TAccumulate seed, FunctionExpression<Function2<TAccumulate, T, TAccumulate>> func, FunctionExpression<Function1<TAccumulate, TResult>> selector) Applies an accumulator function over a sequence. The specified seed value is used as the initial accumulator value, and the specified function is used to select the result value.
- 
allDetermines whether all the elements of a sequence satisfy a condition.
- 
anyDetermines whether any element of a sequence satisfies a condition.
- 
averageBigDecimalComputes the average of a sequence of Decimal values that is obtained by invoking a projection function on each element of the input sequence.
- 
averageNullableBigDecimalComputes the average of a sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence.
- 
averageDoubleComputes the average of a sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.
- 
averageNullableDoubleComputes the average of a sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence.
- 
averageIntegerComputes the average of a sequence of int values that is obtained by invoking a projection function on each element of the input sequence.
- 
averageNullableIntegerComputes the average of a sequence of nullable int values that is obtained by invoking a projection function on each element of the input sequence.
- 
averageFloatComputes the average of a sequence of Float values that is obtained by invoking a projection function on each element of the input sequence.
- 
averageNullableFloatComputes the average of a sequence of nullable Float values that is obtained by invoking a projection function on each element of the input sequence.
- 
averageLongComputes the average of a sequence of long values that is obtained by invoking a projection function on each element of the input sequence.
- 
averageNullableLongComputes the average of a sequence of nullable long values that is obtained by invoking a projection function on each element of the input sequence.
- 
concatConcatenates two sequences.- Specified by:
- concatin interface- ExtendedEnumerable<TSource>
 
- 
countReturns the number of elements in the specified sequence that satisfies a condition.
- 
defaultIfEmptyReturns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty.- Specified by:
- defaultIfEmptyin interface- ExtendedEnumerable<TSource>
 
- 
distinctReturns distinct elements from a sequence by using the default equality comparer to compare values.- Specified by:
- distinctin interface- ExtendedEnumerable<TSource>
 
- 
distinctReturns distinct elements from a sequence by using a specified EqualityComparer<TSource> to compare values.- Specified by:
- distinctin interface- ExtendedEnumerable<TSource>
 
- 
exceptProduces the set difference of two sequences by using the default equality comparer to compare values, eliminate duplicates. (Defined by Enumerable.)- Specified by:
- exceptin interface- ExtendedEnumerable<TSource>
 
- 
exceptProduces the set difference of two sequences by using the default equality comparer to compare values, usingallto indicate whether to eliminate duplicates. (Defined by Enumerable.)- Specified by:
- exceptin interface- ExtendedEnumerable<TSource>
 
- 
exceptProduces the set difference of two sequences by using the specifiedEqualityComparer<TSource>to compare values, eliminate duplicates.- Specified by:
- exceptin interface- ExtendedEnumerable<TSource>
 
- 
exceptProduces the set difference of two sequences by using the specifiedEqualityComparer<TSource>to compare values, usingallto indicate whether to eliminate duplicates.- Specified by:
- exceptin interface- ExtendedEnumerable<TSource>
 
- 
firstReturns the first element of a sequence that satisfies a specified condition.
- 
firstOrDefaultReturns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.
- 
groupByGroups the elements of a sequence according to a specified key selector function.
- 
groupBy<TKey> Queryable<Grouping<TKey,T>> groupBy(FunctionExpression<Function1<T, TKey>> keySelector, EqualityComparer<TKey> comparer) Groups the elements of a sequence according to a specified key selector function and compares the keys by using a specified comparer.
- 
groupBy<TKey,TElement> Queryable<Grouping<TKey,TElement>> groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector) Groups the elements of a sequence according to a specified key selector function and projects the elements for each group by using a specified function.
- 
groupBy<TKey,TElement> Queryable<Grouping<TKey,TElement>> groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, EqualityComparer<TKey> comparer) Groups the elements of a sequence and projects the elements for each group by using a specified function. Key values are compared by using a specified comparer.
- 
groupByK<TKey,TResult> Queryable<TResult> groupByK(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function2<TKey, Enumerable<T>, TResult>> resultSelector) Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key.NOTE: Renamed from groupByto distinguish fromgroupBy(org.apache.calcite.linq4j.tree.FunctionExpression, org.apache.calcite.linq4j.tree.FunctionExpression), which has the same erasure.
- 
groupByK<TKey,TResult> Queryable<TResult> groupByK(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function2<TKey, Enumerable<T>, TResult>> resultSelector, EqualityComparer<TKey> comparer) Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Keys are compared by using a specified comparer.
- 
groupBy<TKey,TElement, Queryable<TResult> groupByTResult> (FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, FunctionExpression<Function2<TKey, Enumerable<TElement>, TResult>> resultSelector) Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. The elements of each group are projected by using a specified function.
- 
groupBy<TKey,TElement, Queryable<TResult> groupByTResult> (FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, FunctionExpression<Function2<TKey, Enumerable<TElement>, TResult>> resultSelector, EqualityComparer<TKey> comparer) Groups the elements of a sequence according to a specified key selector function and creates a result value from each group and its key. Keys are compared by using a specified comparer and the elements of each group are projected by using a specified function.
- 
groupJoin<TInner,TKey, Queryable<TResult> groupJoinTResult> (Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, Enumerable<TInner>, TResult>> resultSelector) Correlates the elements of two sequences based on key equality and groups the results. The default equality comparer is used to compare keys.
- 
groupJoin<TInner,TKey, Queryable<TResult> groupJoinTResult> (Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, Enumerable<TInner>, TResult>> resultSelector, EqualityComparer<TKey> comparer) Correlates the elements of two sequences based on key equality and groups the results. A specifiedEqualityComparer<TSource>is used to compare keys.
- 
intersectProduces the set intersection of two sequences by using the default equality comparer to compare values, eliminate duplicates.(Defined by Queryable.)- Specified by:
- intersectin interface- ExtendedEnumerable<TSource>
 
- 
intersectProduces the set intersection of two sequences by using the default equality comparer to compare values, usingallto indicate whether to eliminate duplicates. (Defined by Queryable.)- Specified by:
- intersectin interface- ExtendedEnumerable<TSource>
 
- 
intersectProduces the set intersection of two sequences by using the specifiedEqualityComparer<TSource>to compare values, eliminate duplicates.- Specified by:
- intersectin interface- ExtendedEnumerable<TSource>
 
- 
intersectProduces the set intersection of two sequences by using the specifiedEqualityComparer<TSource>to compare values, usingallto indicate whether to eliminate duplicates.- Specified by:
- intersectin interface- ExtendedEnumerable<TSource>
 
- 
join<TInner,TKey, Queryable<TResult> joinTResult> (Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, TInner, TResult>> resultSelector) Correlates the elements of two sequences based on matching keys. The default equality comparer is used to compare keys.
- 
join<TInner,TKey, Queryable<TResult> joinTResult> (Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, TInner, TResult>> resultSelector, EqualityComparer<TKey> comparer) Correlates the elements of two sequences based on matching keys. A specifiedEqualityComparer<TSource>is used to compare keys.
- 
lastReturns the last element of a sequence that satisfies a specified condition.
- 
lastOrDefaultReturns the last element of a sequence that satisfies a condition or a default value if no such element is found.
- 
longCountReturns an long that represents the number of elements in a sequence that satisfy a condition.
- 
max<TResult extends Comparable<TResult>> @Nullable TResult max(FunctionExpression<Function1<T, TResult>> selector) Invokes a projection function on each element of a genericIQueryable<TSource>and returns the maximum resulting value.
- 
min<TResult extends Comparable<TResult>> @Nullable TResult min(FunctionExpression<Function1<T, TResult>> selector) Invokes a projection function on each element of a genericIQueryable<TSource>and returns the minimum resulting value.
- 
ofTypeFilters the elements of an IQueryable based on a specified type.The OfType method generates a MethodCallExpressionthat represents calling OfType itself as a constructed generic method. It then passes the MethodCallExpression to the CreateQuery(Expression) method of theQueryProviderrepresented by the Provider property of the source parameter.The query behavior that occurs as a result of executing an expression tree that represents calling OfType depends on the implementation of the type of the source parameter. The expected behavior is that it filters out any elements in source that are not of type TResult. NOTE: clazz parameter not present in C# LINQ; necessary because of Java type erasure. - Specified by:
- ofTypein interface- ExtendedEnumerable<TSource>
- Type Parameters:
- TResult- Target type
- Parameters:
- clazz- Target type
- Returns:
- Collection of T2
 
- 
castDescription copied from interface:ExtendedEnumerableConverts the elements of this Enumerable to the specified type.This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated either by calling its RawEnumerable.enumerator()method directly or by usingfor (... in ...).If an element cannot be cast to type TResult, the Enumerator.current()method will throw aClassCastExceptiona exception when the element it accessed. To obtain only those elements that can be cast to type TResult, use theExtendedEnumerable.ofType(Class)method instead.- Specified by:
- castin interface- ExtendedEnumerable<TSource>
- See Also:
 
- 
orderBy<TKey extends Comparable> OrderedQueryable<T> orderBy(FunctionExpression<Function1<T, TKey>> keySelector) Sorts the elements of a sequence in ascending order according to a key.
- 
orderBy<TKey> OrderedQueryable<T> orderBy(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) Sorts the elements of a sequence in ascending order by using a specified comparer.
- 
orderByDescending<TKey extends Comparable> OrderedQueryable<T> orderByDescending(FunctionExpression<Function1<T, TKey>> keySelector) Sorts the elements of a sequence in descending order according to a key.
- 
orderByDescending<TKey> OrderedQueryable<T> orderByDescending(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) Sorts the elements of a sequence in descending order by using a specified comparer.
- 
reverseInverts the order of the elements in a sequence.- Specified by:
- reversein interface- ExtendedEnumerable<TSource>
 
- 
selectProjects each element of a sequence into a new form.
- 
selectNProjects each element of a sequence into a new form by incorporating the element's index.NOTE: Renamed from selectbecause had same erasure asselect(org.apache.calcite.linq4j.tree.FunctionExpression).
- 
selectMany<TResult> Queryable<TResult> selectMany(FunctionExpression<Function1<T, Enumerable<TResult>>> selector) Projects each element of a sequence to anEnumerable<TSource>and combines the resulting sequences into one sequence.
- 
selectManyN<TResult> Queryable<TResult> selectManyN(FunctionExpression<Function2<T, Integer, Enumerable<TResult>>> selector) Projects each element of a sequence to anEnumerable<TSource>and combines the resulting sequences into one sequence. The index of each source element is used in the projected form of that element.NOTE: Renamed from selectManybecause had same erasure asselectMany(org.apache.calcite.linq4j.tree.FunctionExpression).
- 
selectMany<TCollection,TResult> Queryable<TResult> selectMany(FunctionExpression<Function2<T, Integer, Enumerable<TCollection>>> collectionSelector, FunctionExpression<Function2<T, TCollection, TResult>> resultSelector) Projects each element of a sequence to anEnumerable<TSource>that incorporates the index of the source element that produced it. A result selector function is invoked on each element of each intermediate sequence, and the resulting values are combined into a single, one-dimensional sequence and returned.
- 
selectManyN<TCollection,TResult> Queryable<TResult> selectManyN(FunctionExpression<Function1<T, Enumerable<TCollection>>> collectionSelector, FunctionExpression<Function2<T, TCollection, TResult>> resultSelector) Projects each element of a sequence to anEnumerable<TSource>and invokes a result selector function on each element therein. The resulting values from each intermediate sequence are combined into a single, one-dimensional sequence and returned.NOTE: Renamed from selectManybecause had same erasure asselectMany(org.apache.calcite.linq4j.tree.FunctionExpression, org.apache.calcite.linq4j.tree.FunctionExpression)
- 
singleReturns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.
- 
singleOrDefaultT singleOrDefault()Returns the only element of a sequence, or a default value if the sequence is empty; this method throws an exception if there is more than one element in the sequence.- Specified by:
- singleOrDefaultin interface- ExtendedEnumerable<TSource>
 
- 
singleOrDefaultReturns the only element of a sequence that satisfies a specified condition or a default value if no such element exists; this method throws an exception if more than one element satisfies the condition.
- 
skipBypasses a specified number of elements in a sequence and then returns the remaining elements.- Specified by:
- skipin interface- ExtendedEnumerable<TSource>
 
- 
skipWhileBypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements.
- 
skipWhileNBypasses elements in a sequence as long as a specified condition is true and then returns the remaining elements. The element's index is used in the logic of the predicate function.
- 
sumBigDecimalComputes the sum of the sequence of Decimal values that is obtained by invoking a projection function on each element of the input sequence.
- 
sumNullableBigDecimalComputes the sum of the sequence of nullable Decimal values that is obtained by invoking a projection function on each element of the input sequence.
- 
sumDoubleComputes the sum of the sequence of Double values that is obtained by invoking a projection function on each element of the input sequence.
- 
sumNullableDoubleComputes the sum of the sequence of nullable Double values that is obtained by invoking a projection function on each element of the input sequence.
- 
sumIntegerComputes the sum of the sequence of int values that is obtained by invoking a projection function on each element of the input sequence.
- 
sumNullableIntegerComputes the sum of the sequence of nullable int values that is obtained by invoking a projection function on each element of the input sequence.
- 
sumLongComputes the sum of the sequence of long values that is obtained by invoking a projection function on each element of the input sequence.
- 
sumNullableLongComputes the sum of the sequence of nullable long values that is obtained by invoking a projection function on each element of the input sequence.
- 
sumFloatComputes the sum of the sequence of Float values that is obtained by invoking a projection function on each element of the input sequence.
- 
sumNullableFloatComputes the sum of the sequence of nullable Float values that is obtained by invoking a projection function on each element of the input sequence.
- 
takeReturns a specified number of contiguous elements from the start of a sequence.- Specified by:
- takein interface- ExtendedEnumerable<TSource>
 
- 
takeWhileReturns elements from a sequence as long as a specified condition is true.
- 
takeWhileNReturns elements from a sequence as long as a specified condition is true. The element's index is used in the logic of the predicate function.
- 
unionProduces the set union of two sequences by using the default equality comparer.- Specified by:
- unionin interface- ExtendedEnumerable<TSource>
 
- 
unionProduces the set union of two sequences by using a specifiedEqualityComparer<TSource>.- Specified by:
- unionin interface- ExtendedEnumerable<TSource>
 
- 
whereFilters a sequence of values based on a predicate.
- 
whereNFilters a sequence of values based on a predicate. Each element's index is used in the logic of the predicate function.
- 
zip<T1,TResult> Queryable<TResult> zip(Enumerable<T1> source1, FunctionExpression<Function2<T, T1, TResult>> resultSelector) Merges two sequences by using the specified predicate function.
- 
getThisDescription copied from class:DefaultEnumerableDerived classes might wish to override this method to return the "outer" enumerable.- Overrides:
- getThisin class- DefaultEnumerable<T>
 
- 
getThisOrderedQueryable
- 
asEnumerableDescription copied from interface:ExtendedEnumerableReturns the input typed asEnumerable<TSource>.This method has no effect other than to change the compile-time type of source from a type that implements Enumerable<TSource>toEnumerable<TSource>itself.asEnumerable<TSource>(Enumerable<TSource>)can be used to choose between query implementations when a sequence implementsEnumerable<TSource>but also has a different set of public query methods available. For example, given a generic class Table that implementsEnumerable<TSource>and has its own methods such aswhere,select, andselectMany, a call towherewould invoke the publicwheremethod ofTable. ATabletype that represents a database table could have awheremethod that takes the predicate argument as an expression tree and converts the tree to SQL for remote execution. If remote execution is not desired, for example because the predicate invokes a local method, theasEnumerable<TSource>method can be used to hide the custom methods and instead make the standard query operators available.- Specified by:
- asEnumerablein interface- ExtendedEnumerable<T>
- Overrides:
- asEnumerablein class- DefaultEnumerable<T>
 
- 
unionDescription copied from interface:ExtendedEnumerableProduces the set union of two sequences by using the default equality comparer.- Specified by:
- unionin interface- ExtendedEnumerable<T>
- Overrides:
- unionin class- DefaultEnumerable<T>
 
- 
unionDescription copied from interface:ExtendedEnumerableProduces the set union of two sequences by using a specifiedEqualityComparer<TSource>.- Specified by:
- unionin interface- ExtendedEnumerable<T>
- Overrides:
- unionin class- DefaultEnumerable<T>
 
- 
intersectDescription copied from interface:ExtendedEnumerableProduces the set intersection of two sequences by using the default equality comparer to compare values, eliminate duplicates. (Defined by Enumerable.)- Specified by:
- intersectin interface- ExtendedEnumerable<T>
- Overrides:
- intersectin class- DefaultEnumerable<T>
 
- 
intersectDescription copied from interface:ExtendedEnumerableProduces the set intersection of two sequences by using the default equality comparer to compare values, usingallto indicate whether to eliminate duplicates. (Defined by Enumerable.)- Specified by:
- intersectin interface- ExtendedEnumerable<T>
- Overrides:
- intersectin class- DefaultEnumerable<T>
 
- 
intersectDescription copied from interface:ExtendedEnumerableProduces the set intersection of two sequences by using the specifiedEqualityComparer<TSource>to compare values, eliminate duplicates.- Specified by:
- intersectin interface- ExtendedEnumerable<T>
- Overrides:
- intersectin class- DefaultEnumerable<T>
 
- 
intersectDescription copied from interface:ExtendedEnumerableProduces the set intersection of two sequences by using the specifiedEqualityComparer<TSource>to compare values, usingallto indicate whether to eliminate duplicates.- Specified by:
- intersectin interface- ExtendedEnumerable<T>
- Overrides:
- intersectin class- DefaultEnumerable<T>
 
- 
exceptDescription copied from interface:ExtendedEnumerableProduces the set difference of two sequences by using the specifiedEqualityComparer<TSource>to compare values, eliminate duplicates.- Specified by:
- exceptin interface- ExtendedEnumerable<T>
- Overrides:
- exceptin class- DefaultEnumerable<T>
 
- 
exceptDescription copied from interface:ExtendedEnumerableProduces the set difference of two sequences by using the specifiedEqualityComparer<TSource>to compare values, usingallto indicate whether to eliminate duplicates.- Specified by:
- exceptin interface- ExtendedEnumerable<T>
- Overrides:
- exceptin class- DefaultEnumerable<T>
 
- 
exceptDescription copied from interface:ExtendedEnumerableProduces the set difference of two sequences by using the default equality comparer to compare values, eliminate duplicates. (Defined by Enumerable.)- Specified by:
- exceptin interface- ExtendedEnumerable<T>
- Overrides:
- exceptin class- DefaultEnumerable<T>
 
- 
exceptDescription copied from interface:ExtendedEnumerableProduces the set difference of two sequences by using the default equality comparer to compare values, usingallto indicate whether to eliminate duplicates. (Defined by Enumerable.)- Specified by:
- exceptin interface- ExtendedEnumerable<T>
- Overrides:
- exceptin class- DefaultEnumerable<T>
 
- 
takeDescription copied from interface:ExtendedEnumerableReturns a specified number of contiguous elements from the start of a sequence.- Specified by:
- takein interface- ExtendedEnumerable<T>
- Overrides:
- takein class- DefaultEnumerable<T>
 
- 
skipDescription copied from interface:ExtendedEnumerableBypasses a specified number of elements in a sequence and then returns the remaining elements.- Specified by:
- skipin interface- ExtendedEnumerable<T>
- Overrides:
- skipin class- DefaultEnumerable<T>
 
- 
reverseDescription copied from interface:ExtendedEnumerableInverts the order of the elements in a sequence.- Specified by:
- reversein interface- ExtendedEnumerable<T>
- Overrides:
- reversein class- DefaultEnumerable<T>
 
- 
distinctDescription copied from interface:ExtendedEnumerableReturns distinct elements from a sequence by using the default equality comparer to compare values.- Specified by:
- distinctin interface- ExtendedEnumerable<T>
- Overrides:
- distinctin class- DefaultEnumerable<T>
 
- 
distinctDescription copied from interface:ExtendedEnumerableReturns distinct elements from a sequence by using a specifiedEqualityComparer<TSource>to compare values.- Specified by:
- distinctin interface- ExtendedEnumerable<T>
- Overrides:
- distinctin class- DefaultEnumerable<T>
 
- 
ofTypeDescription copied from interface:ExtendedEnumerableFilters the elements of an Enumerable based on a specified type.Analogous to LINQ's Enumerable.OfType extension method. - Specified by:
- ofTypein interface- ExtendedEnumerable<T>
- Overrides:
- ofTypein class- DefaultEnumerable<T>
- Type Parameters:
- TResult- Target type
- Parameters:
- clazz- Target type
- Returns:
- Collection of T2
 
- 
defaultIfEmptyDescription copied from interface:ExtendedEnumerableReturns the elements of the specified sequence or the type parameter's default value in a singleton collection if the sequence is empty.- Specified by:
- defaultIfEmptyin interface- ExtendedEnumerable<T>
- Overrides:
- defaultIfEmptyin class- DefaultEnumerable<T>
 
- 
asQueryableDescription copied from interface:EnumerableConverts this Enumerable to a Queryable.- Specified by:
- asQueryablein interface- Enumerable<T>
- Specified by:
- asQueryablein interface- ExtendedEnumerable<T>
- Overrides:
- asQueryablein class- DefaultEnumerable<T>
- Returns:
- A queryable
- See Also:
 
- 
castDescription copied from interface:ExtendedEnumerableConverts the elements of this Enumerable to the specified type.This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action. The query represented by this method is not executed until the object is enumerated either by calling its RawEnumerable.enumerator()method directly or by usingfor (... in ...).If an element cannot be cast to type TResult, the Enumerator.current()method will throw aClassCastExceptiona exception when the element it accessed. To obtain only those elements that can be cast to type TResult, use theExtendedEnumerable.ofType(Class)method instead.- Specified by:
- castin interface- ExtendedEnumerable<T>
- Overrides:
- castin class- DefaultEnumerable<T>
- See Also:
 
- 
aggregate
- 
aggregatepublic <TAccumulate> TAccumulate aggregate(TAccumulate seed, FunctionExpression<Function2<TAccumulate, T, TAccumulate>> selector) 
- 
aggregatepublic <TAccumulate,TResult> TResult aggregate(TAccumulate seed, FunctionExpression<Function2<TAccumulate, T, TAccumulate>> func, FunctionExpression<Function1<TAccumulate, TResult>> selector) 
- 
all
- 
any
- 
averageBigDecimal
- 
averageNullableBigDecimalpublic BigDecimal averageNullableBigDecimal(FunctionExpression<NullableBigDecimalFunction1<T>> selector) 
- 
averageDouble
- 
averageNullableDouble
- 
averageInteger
- 
averageNullableInteger
- 
averageFloat
- 
averageNullableFloat
- 
averageLong
- 
averageNullableLong
- 
concatDescription copied from interface:ExtendedEnumerableConcatenates two sequences.- Specified by:
- concatin interface- ExtendedEnumerable<T>
- Overrides:
- concatin class- DefaultEnumerable<T>
 
- 
count
- 
first
- 
firstOrDefault
- 
groupBy
- 
groupBypublic <TKey> Queryable<Grouping<TKey,T>> groupBy(FunctionExpression<Function1<T, TKey>> keySelector, EqualityComparer<TKey> comparer) 
- 
groupBypublic <TKey,TElement> Queryable<Grouping<TKey,TElement>> groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector) 
- 
groupBypublic <TKey,TElement> Queryable<Grouping<TKey,TElement>> groupBy(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, EqualityComparer<TKey> comparer) 
- 
groupByKpublic <TKey,TResult> Queryable<TResult> groupByK(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function2<TKey, Enumerable<T>, TResult>> resultSelector) 
- 
groupByKpublic <TKey,TResult> Queryable<TResult> groupByK(FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function2<TKey, Enumerable<T>, TResult>> resultSelector, EqualityComparer<TKey> comparer) 
- 
groupBypublic <TKey,TElement, Queryable<TResult> groupByTResult> (FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, FunctionExpression<Function2<TKey, Enumerable<TElement>, TResult>> resultSelector) 
- 
groupBypublic <TKey,TElement, Queryable<TResult> groupByTResult> (FunctionExpression<Function1<T, TKey>> keySelector, FunctionExpression<Function1<T, TElement>> elementSelector, FunctionExpression<Function2<TKey, Enumerable<TElement>, TResult>> resultSelector, EqualityComparer<TKey> comparer) 
- 
groupJoinpublic <TInner,TKey, Queryable<TResult> groupJoinTResult> (Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, Enumerable<TInner>, TResult>> resultSelector) 
- 
groupJoinpublic <TInner,TKey, Queryable<TResult> groupJoinTResult> (Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, Enumerable<TInner>, TResult>> resultSelector, EqualityComparer<TKey> comparer) 
- 
joinpublic <TInner,TKey, Queryable<TResult> joinTResult> (Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, TInner, TResult>> resultSelector) 
- 
joinpublic <TInner,TKey, Queryable<TResult> joinTResult> (Enumerable<TInner> inner, FunctionExpression<Function1<T, TKey>> outerKeySelector, FunctionExpression<Function1<TInner, TKey>> innerKeySelector, FunctionExpression<Function2<T, TInner, TResult>> resultSelector, EqualityComparer<TKey> comparer) 
- 
last
- 
lastOrDefault
- 
longCount
- 
maxpublic <TResult extends Comparable<TResult>> TResult max(FunctionExpression<Function1<T, TResult>> selector) 
- 
minpublic <TResult extends Comparable<TResult>> TResult min(FunctionExpression<Function1<T, TResult>> selector) 
- 
orderBypublic <TKey extends Comparable> OrderedQueryable<T> orderBy(FunctionExpression<Function1<T, TKey>> keySelector) 
- 
orderBypublic <TKey> OrderedQueryable<T> orderBy(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) 
- 
orderByDescendingpublic <TKey extends Comparable> OrderedQueryable<T> orderByDescending(FunctionExpression<Function1<T, TKey>> keySelector) 
- 
orderByDescendingpublic <TKey> OrderedQueryable<T> orderByDescending(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) 
- 
select
- 
selectNpublic <TResult> Queryable<TResult> selectN(FunctionExpression<Function2<T, Integer, TResult>> selector) 
- 
selectManypublic <TResult> Queryable<TResult> selectMany(FunctionExpression<Function1<T, Enumerable<TResult>>> selector) 
- 
selectManyNpublic <TResult> Queryable<TResult> selectManyN(FunctionExpression<Function2<T, Integer, Enumerable<TResult>>> selector) 
- 
selectManypublic <TCollection,TResult> Queryable<TResult> selectMany(FunctionExpression<Function2<T, Integer, Enumerable<TCollection>>> collectionSelector, FunctionExpression<Function2<T, TCollection, TResult>> resultSelector) 
- 
selectManyNpublic <TCollection,TResult> Queryable<TResult> selectManyN(FunctionExpression<Function1<T, Enumerable<TCollection>>> collectionSelector, FunctionExpression<Function2<T, TCollection, TResult>> resultSelector) 
- 
single
- 
singleOrDefault
- 
skipWhile
- 
skipWhileN
- 
sumBigDecimal
- 
sumNullableBigDecimalpublic BigDecimal sumNullableBigDecimal(FunctionExpression<NullableBigDecimalFunction1<T>> selector) 
- 
sumDouble
- 
sumNullableDouble
- 
sumInteger
- 
sumNullableInteger
- 
sumLong
- 
sumNullableLong
- 
sumFloat
- 
sumNullableFloat
- 
takeWhile
- 
takeWhileN
- 
thenBypublic <TKey extends Comparable<TKey>> OrderedQueryable<T> thenBy(FunctionExpression<Function1<T, TKey>> keySelector) Description copied from interface:ExtendedOrderedQueryablePerforms a subsequent ordering of the elements in a sequence in ascending order according to a key.- Specified by:
- thenByin interface- ExtendedOrderedQueryable<T>
 
- 
thenBypublic <TKey> OrderedQueryable<T> thenBy(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) Description copied from interface:ExtendedOrderedQueryablePerforms a subsequent ordering of the elements in a sequence in ascending order according to a key, using a specified comparator.- Specified by:
- thenByin interface- ExtendedOrderedQueryable<T>
 
- 
thenByDescendingpublic <TKey extends Comparable<TKey>> OrderedQueryable<T> thenByDescending(FunctionExpression<Function1<T, TKey>> keySelector) Description copied from interface:ExtendedOrderedQueryablePerforms a subsequent ordering of the elements in a sequence in descending order according to a key.- Specified by:
- thenByDescendingin interface- ExtendedOrderedQueryable<T>
 
- 
thenByDescendingpublic <TKey> OrderedQueryable<T> thenByDescending(FunctionExpression<Function1<T, TKey>> keySelector, Comparator<TKey> comparator) Description copied from interface:ExtendedOrderedQueryablePerforms a subsequent ordering of the elements in a sequence in descending order according to a key, using a specified comparator.- Specified by:
- thenByDescendingin interface- ExtendedOrderedQueryable<T>
 
- 
where
- 
whereN
- 
zippublic <T1,TResult> Queryable<TResult> zip(Enumerable<T1> source1, FunctionExpression<Function2<T, T1, TResult>> resultSelector) 
 
-