MongoQueryable Class |
Namespace: MongoDB.Driver.Linq
The MongoQueryable type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | AnyAsync<TSource>(IMongoQueryable<TSource>, CancellationToken) |
Determines whether a sequence contains any elements.
|
![]() ![]() | AnyAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken) |
Determines whether any element of a sequence satisfies a condition.
|
![]() ![]() | AppendStage<TSource, TResult> |
Appends an arbitrary stage to the LINQ pipeline.
|
![]() ![]() | AverageAsync(IMongoQueryable<Decimal>, CancellationToken) |
Computes the average of a sequence of Decimal values.
|
![]() ![]() | AverageAsync(IMongoQueryable<Double>, CancellationToken) |
Computes the average of a sequence of Double values.
|
![]() ![]() | AverageAsync(IMongoQueryable<Int32>, CancellationToken) |
Computes the average of a sequence of Int32 values.
|
![]() ![]() | AverageAsync(IMongoQueryable<Int64>, CancellationToken) |
Computes the average of a sequence of Int64 values.
|
![]() ![]() | AverageAsync(IMongoQueryable<Nullable<Decimal>>, CancellationToken) |
Computes the average of a sequence of Nullable<T> values.
|
![]() ![]() | AverageAsync(IMongoQueryable<Nullable<Double>>, CancellationToken) |
Computes the average of a sequence of Nullable<T> values.
|
![]() ![]() | AverageAsync(IMongoQueryable<Nullable<Int32>>, CancellationToken) |
Computes the average of a sequence of Nullable<T> values.
|
![]() ![]() | AverageAsync(IMongoQueryable<Nullable<Int64>>, CancellationToken) |
Computes the average of a sequence of Nullable<T> values.
|
![]() ![]() | AverageAsync(IMongoQueryable<Nullable<Single>>, CancellationToken) |
Computes the average of a sequence of Nullable<T> values.
|
![]() ![]() | AverageAsync(IMongoQueryable<Single>, CancellationToken) |
Computes the average of a sequence of Single values.
|
![]() ![]() | AverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Decimal>>, CancellationToken) |
Computes the average of the sequence of Decimal values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | AverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Double>>, CancellationToken) |
Computes the average of the sequence of Double values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | AverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int32>>, CancellationToken) |
Computes the average of the sequence of Int32 values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | AverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int64>>, CancellationToken) |
Computes the average of the sequence of Int64 values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | AverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Decimal>>>, CancellationToken) |
Computes the average of the sequence of Nullable<T> values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | AverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Double>>>, CancellationToken) |
Computes the average of the sequence of Nullable<T> values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | AverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int32>>>, CancellationToken) |
Computes the average of the sequence of Nullable<T> values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | AverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int64>>>, CancellationToken) |
Computes the average of the sequence of Nullable<T> values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | AverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Single>>>, CancellationToken) |
Computes the average of the sequence of Nullable<T> values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | AverageAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Single>>, CancellationToken) |
Computes the average of the sequence of Single values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | CountAsync<TSource>(IMongoQueryable<TSource>, CancellationToken) |
Returns the number of elements in a sequence.
|
![]() ![]() | CountAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken) |
Returns the number of elements in the specified sequence that satisfies a condition.
|
![]() ![]() | Densify<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Object>>, DensifyRange, IEnumerable<Expression<Func<TSource, Object>>>) |
Adds a $densify stage to the LINQ pipeline.
|
![]() ![]() | Densify<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Object>>, DensifyRange,Expression<Func<TSource, Object>>[]) |
Adds a $densify stage to the LINQ pipeline.
|
![]() ![]() | Distinct<TSource> |
Returns distinct elements from a sequence by using the default equality comparer to compare values.
|
![]() ![]() | Documents<TDocument>(IMongoQueryable<NoPipelineInput>,TDocument[]) |
Injects a sequence of documents at the beginning of a pipeline.
|
![]() ![]() | Documents<TDocument>(IMongoQueryable<NoPipelineInput>, IEnumerable<TDocument>, IBsonSerializer<TDocument>) |
Injects a sequence of documents at the beginning of a pipeline.
|
![]() ![]() | FirstAsync<TSource>(IMongoQueryable<TSource>, CancellationToken) |
Returns the first element of a sequence.
|
![]() ![]() | FirstAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken) |
Returns the first element of a sequence that satisfies a specified condition.
|
![]() ![]() | FirstOrDefaultAsync<TSource>(IMongoQueryable<TSource>, CancellationToken) |
Returns the first element of a sequence, or a default value if the sequence contains no elements.
|
![]() ![]() | FirstOrDefaultAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken) |
Returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.
|
![]() ![]() | GroupBy<TSource, TKey>(IMongoQueryable<TSource>, Expression<Func<TSource, TKey>>) |
Groups the elements of a sequence according to a specified key selector function.
|
![]() ![]() | GroupBy<TSource, TKey, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, TKey>>, Expression<Func<TKey, IEnumerable<TSource>, TResult>>) |
Groups the elements of a sequence according to a specified key selector function
and creates a result value from each group and its key.
|
![]() ![]() | GroupJoin<TOuter, TInner, TKey, TResult>(IMongoQueryable<TOuter>, IMongoCollection<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, IEnumerable<TInner>, TResult>>) |
Correlates the elements of two sequences based on key equality and groups the results.
|
![]() ![]() | GroupJoin<TOuter, TInner, TKey, TResult>(IMongoQueryable<TOuter>, IEnumerable<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, IEnumerable<TInner>, TResult>>) |
Correlates the elements of two sequences based on key equality and groups the results.
|
![]() ![]() | Join<TOuter, TInner, TKey, TResult>(IMongoQueryable<TOuter>, IMongoCollection<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, TInner, TResult>>) |
Correlates the elements of two sequences based on matching keys.
|
![]() ![]() | Join<TOuter, TInner, TKey, TResult>(IMongoQueryable<TOuter>, IEnumerable<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, TInner, TResult>>) |
Correlates the elements of two sequences based on matching keys.
|
![]() ![]() | LongCountAsync<TSource>(IMongoQueryable<TSource>, CancellationToken) |
Returns the number of elements in a sequence.
|
![]() ![]() | LongCountAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken) |
Returns the number of elements in the specified sequence that satisfies a condition.
|
![]() ![]() | MaxAsync<TSource>(IMongoQueryable<TSource>, CancellationToken) |
Returns the maximum value in a generic IMongoQueryable<T>.
|
![]() ![]() | MaxAsync<TSource, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, TResult>>, CancellationToken) |
Invokes a projection function on each element of a generic IMongoQueryable<T> and returns the maximum resulting value.
|
![]() ![]() | MinAsync<TSource>(IMongoQueryable<TSource>, CancellationToken) |
Returns the minimum value in a generic IMongoQueryable<T>.
|
![]() ![]() | MinAsync<TSource, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, TResult>>, CancellationToken) |
Invokes a projection function on each element of a generic IMongoQueryable<T> and returns the minimum resulting value.
|
![]() ![]() | OfType<TResult> |
Filters the elements of an IMongoQueryable based on a specified type.
|
![]() ![]() | OrderBy<TSource, TKey> |
Sorts the elements of a sequence in ascending order according to a key.
|
![]() ![]() | OrderByDescending<TSource, TKey> |
Sorts the elements of a sequence in descending order according to a key.
|
![]() ![]() | Sample<TSource> |
Returns a sample of the elements in the source.
|
![]() ![]() | Search<TSource> |
Appends a $search stage to the LINQ pipeline.
|
![]() ![]() | SearchMeta<TSource> |
Appends a $searchMeta stage to the LINQ pipeline.
|
![]() ![]() | Select<TSource, TResult> |
Projects each element of a sequence into a new form by incorporating the
element's index.
|
![]() ![]() | SelectMany<TSource, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, IEnumerable<TResult>>>) |
Projects each element of a sequence to an IEnumerable<T> and combines the resulting sequences into one sequence.
|
![]() ![]() | SelectMany<TSource, TCollection, TResult>(IMongoQueryable<TSource>, Expression<Func<TSource, IEnumerable<TCollection>>>, Expression<Func<TSource, TCollection, TResult>>) |
Projects each element of a sequence to an IEnumerable<T> 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.
|
![]() ![]() | SingleAsync<TSource>(IMongoQueryable<TSource>, CancellationToken) |
Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.
|
![]() ![]() | SingleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken) |
Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.
|
![]() ![]() | SingleOrDefaultAsync<TSource>(IMongoQueryable<TSource>, CancellationToken) |
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.
|
![]() ![]() | SingleOrDefaultAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Boolean>>, CancellationToken) |
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<TSource>(IMongoQueryable<TSource>, Int32) |
Bypasses a specified number of elements in a sequence and then returns the
remaining elements.
|
![]() ![]() | Skip<TSource>(IMongoQueryable<TSource>, Int64) |
Bypasses a specified number of elements in a sequence and then returns the
remaining elements.
|
![]() ![]() | StandardDeviationPopulation(IMongoQueryable<Decimal>) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulation(IMongoQueryable<Double>) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulation(IMongoQueryable<Int32>) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulation(IMongoQueryable<Int64>) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulation(IMongoQueryable<Nullable<Decimal>>) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulation(IMongoQueryable<Nullable<Double>>) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulation(IMongoQueryable<Nullable<Int32>>) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulation(IMongoQueryable<Nullable<Int64>>) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulation(IMongoQueryable<Nullable<Single>>) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulation(IMongoQueryable<Single>) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Decimal>>) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Double>>) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int32>>) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int64>>) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Decimal>>>) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Double>>>) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int32>>>) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int64>>>) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Single>>>) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulation<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Single>>) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulationAsync(IMongoQueryable<Decimal>, CancellationToken) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulationAsync(IMongoQueryable<Double>, CancellationToken) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulationAsync(IMongoQueryable<Int32>, CancellationToken) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulationAsync(IMongoQueryable<Int64>, CancellationToken) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulationAsync(IMongoQueryable<Nullable<Decimal>>, CancellationToken) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulationAsync(IMongoQueryable<Nullable<Double>>, CancellationToken) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulationAsync(IMongoQueryable<Nullable<Int32>>, CancellationToken) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulationAsync(IMongoQueryable<Nullable<Int64>>, CancellationToken) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulationAsync(IMongoQueryable<Nullable<Single>>, CancellationToken) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulationAsync(IMongoQueryable<Single>, CancellationToken) |
Computes the population standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Decimal>>, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Double>>, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int32>>, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int64>>, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Decimal>>>, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Double>>>, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int32>>>, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int64>>>, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Single>>>, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationPopulationAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Single>>, CancellationToken) |
Computes the population standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSample(IMongoQueryable<Decimal>) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSample(IMongoQueryable<Double>) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSample(IMongoQueryable<Int32>) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSample(IMongoQueryable<Int64>) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSample(IMongoQueryable<Nullable<Decimal>>) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSample(IMongoQueryable<Nullable<Double>>) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSample(IMongoQueryable<Nullable<Int32>>) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSample(IMongoQueryable<Nullable<Int64>>) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSample(IMongoQueryable<Nullable<Single>>) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSample(IMongoQueryable<Single>) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Decimal>>) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Double>>) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int32>>) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int64>>) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Decimal>>>) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Double>>>) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int32>>>) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int64>>>) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Single>>>) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSample<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Single>>) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSampleAsync(IMongoQueryable<Decimal>, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSampleAsync(IMongoQueryable<Double>, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSampleAsync(IMongoQueryable<Int32>, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSampleAsync(IMongoQueryable<Int64>, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSampleAsync(IMongoQueryable<Nullable<Decimal>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSampleAsync(IMongoQueryable<Nullable<Double>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSampleAsync(IMongoQueryable<Nullable<Int32>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSampleAsync(IMongoQueryable<Nullable<Int64>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSampleAsync(IMongoQueryable<Nullable<Single>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSampleAsync(IMongoQueryable<Single>, CancellationToken) |
Computes the sample standard deviation of a sequence of values.
|
![]() ![]() | StandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Decimal>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Double>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int32>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int64>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Decimal>>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Double>>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int32>>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int64>>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Single>>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | StandardDeviationSampleAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Single>>, CancellationToken) |
Computes the sample standard deviation of a sequence of values that are obtained by invoking a transform function on each element of the input sequence.
|
![]() ![]() | SumAsync(IMongoQueryable<Decimal>, CancellationToken) |
Computes the sum of a sequence of Decimal values.
|
![]() ![]() | SumAsync(IMongoQueryable<Double>, CancellationToken) |
Computes the sum of a sequence of Double values.
|
![]() ![]() | SumAsync(IMongoQueryable<Int32>, CancellationToken) |
Computes the sum of a sequence of Int32 values.
|
![]() ![]() | SumAsync(IMongoQueryable<Int64>, CancellationToken) |
Computes the sum of a sequence of Int64 values.
|
![]() ![]() | SumAsync(IMongoQueryable<Nullable<Decimal>>, CancellationToken) |
Computes the sum of a sequence of Nullable<T> values.
|
![]() ![]() | SumAsync(IMongoQueryable<Nullable<Double>>, CancellationToken) |
Computes the sum of a sequence of Nullable<T> values.
|
![]() ![]() | SumAsync(IMongoQueryable<Nullable<Int32>>, CancellationToken) |
Computes the sum of a sequence of Nullable<T> values.
|
![]() ![]() | SumAsync(IMongoQueryable<Nullable<Int64>>, CancellationToken) |
Computes the sum of a sequence of Nullable<T> values.
|
![]() ![]() | SumAsync(IMongoQueryable<Nullable<Single>>, CancellationToken) |
Computes the sum of a sequence of Nullable<T> values.
|
![]() ![]() | SumAsync(IMongoQueryable<Single>, CancellationToken) |
Computes the sum of a sequence of Single values.
|
![]() ![]() | SumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Decimal>>, CancellationToken) |
Computes the sum of the sequence of Decimal values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | SumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Double>>, CancellationToken) |
Computes the sum of the sequence of Double values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | SumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int32>>, CancellationToken) |
Computes the sum of the sequence of Int32 values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | SumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Int64>>, CancellationToken) |
Computes the sum of the sequence of Int64 values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | SumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Decimal>>>, CancellationToken) |
Computes the sum of the sequence of Nullable<T> values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | SumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Double>>>, CancellationToken) |
Computes the sum of the sequence of Nullable<T> values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | SumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int32>>>, CancellationToken) |
Computes the sum of the sequence of Nullable<T> values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | SumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Int64>>>, CancellationToken) |
Computes the sum of the sequence of Nullable<T> values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | SumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Nullable<Single>>>, CancellationToken) |
Computes the sum of the sequence of Nullable<T> values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | SumAsync<TSource>(IMongoQueryable<TSource>, Expression<Func<TSource, Single>>, CancellationToken) |
Computes the sum of the sequence of Single values that is obtained
by invoking a projection function on each element of the input sequence.
|
![]() ![]() | Take<TSource>(IMongoQueryable<TSource>, Int32) |
Returns a specified number of contiguous elements from the start of a sequence.
|
![]() ![]() | Take<TSource>(IMongoQueryable<TSource>, Int64) |
Returns a specified number of contiguous elements from the start of a sequence.
|
![]() ![]() | ThenBy<TSource, TKey> |
Performs a subsequent ordering of the elements in a sequence in ascending
order according to a key.
|
![]() ![]() | ThenByDescending<TSource, TKey> |
Performs a subsequent ordering of the elements in a sequence in descending
order according to a key.
|
![]() ![]() | Where<TSource> |
Filters a sequence of values based on a predicate.
|