IMongoQueryable<T> Interface |
Namespace: MongoDB.Driver.Linq
public interface IMongoQueryable<T> : IMongoQueryable, IQueryable, IEnumerable, IQueryable<T>, IEnumerable<T>, IAsyncCursorSource<T>
The IMongoQueryable<T> type exposes the following members.
Name | Description | |
---|---|---|
![]() | ElementType | Gets the type of the element(s) that are returned when the expression tree associated with this instance of IQueryable is executed. (Inherited from IQueryable.) |
![]() | Expression | Gets the expression tree that is associated with the instance of IQueryable. (Inherited from IQueryable.) |
![]() | Provider | Gets the query provider that is associated with this data source. (Inherited from IQueryable.) |
Name | Description | |
---|---|---|
![]() | GetEnumerator | Returns an enumerator that iterates through a collection. (Inherited from IEnumerable.) |
![]() | GetExecutionModel |
Gets the execution model.
(Inherited from IMongoQueryable.) |
![]() | ToCursor |
Executes the operation and returns a cursor to the results.
(Inherited from IAsyncCursorSource<TDocument>.) |
![]() | ToCursorAsync |
Executes the operation and returns a cursor to the results.
(Inherited from IAsyncCursorSource<TDocument>.) |
Name | Description | |
---|---|---|
![]() | AllElements<T> |
Represents all elements in an array (corresponds to the server's "$[]" update operator).
(Defined by MongoEnumerable.) |
![]() | AllMatchingElements<T> |
Represents all matching elements in an array when using an array filter (corresponds to the server's "$[identifier]" update operator).
(Defined by MongoEnumerable.) |
![]() | Any<T> |
Determines whether the cursor returned by a cursor source contains any documents.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | AnyAsync<T>(CancellationToken) | Overloaded.
Determines whether the cursor returned by a cursor source contains any documents.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | AnyAsync<TSource>(CancellationToken) | Overloaded.
Determines whether a sequence contains any elements.
(Defined by MongoQueryable.) |
![]() | AnyAsync<TSource>(Expression<Func<TSource, Boolean>>, CancellationToken) | Overloaded.
Determines whether any element of a sequence satisfies a condition.
(Defined by MongoQueryable.) |
![]() | AppendStage<TSource, TResult> |
Appends an arbitrary stage to the LINQ pipeline.
(Defined by MongoQueryable.) |
![]() | As<TSource, TResult> |
Allows the results to be interpreted as a different type. It is up to the caller
to determine that the new result type is compatible with the actual results.
(Defined by MongoQueryable.) |
![]() | AverageAsync<TSource>(Expression<Func<TSource, Decimal>>, CancellationToken) | Overloaded.
Computes the average of the sequence of Decimal values that is obtained
by invoking a projection function on each element of the input sequence.
(Defined by MongoQueryable.) |
![]() | AverageAsync<TSource>(Expression<Func<TSource, Nullable<Decimal>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | AverageAsync<TSource>(Expression<Func<TSource, Double>>, CancellationToken) | Overloaded.
Computes the average of the sequence of Double values that is obtained
by invoking a projection function on each element of the input sequence.
(Defined by MongoQueryable.) |
![]() | AverageAsync<TSource>(Expression<Func<TSource, Nullable<Double>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | AverageAsync<TSource>(Expression<Func<TSource, Single>>, CancellationToken) | Overloaded.
Computes the average of the sequence of Single values that is obtained
by invoking a projection function on each element of the input sequence.
(Defined by MongoQueryable.) |
![]() | AverageAsync<TSource>(Expression<Func<TSource, Nullable<Single>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | AverageAsync<TSource>(Expression<Func<TSource, Int32>>, CancellationToken) | Overloaded.
Computes the average of the sequence of Int32 values that is obtained
by invoking a projection function on each element of the input sequence.
(Defined by MongoQueryable.) |
![]() | AverageAsync<TSource>(Expression<Func<TSource, Nullable<Int32>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | AverageAsync<TSource>(Expression<Func<TSource, Int64>>, CancellationToken) | Overloaded.
Computes the average of the sequence of Int64 values that is obtained
by invoking a projection function on each element of the input sequence.
(Defined by MongoQueryable.) |
![]() | AverageAsync<TSource>(Expression<Func<TSource, Nullable<Int64>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | Bottom<T, TResult> |
Returns the bottom result.
(Defined by MongoEnumerable.) |
![]() | BottomN<T, TResult>(SortDefinition<T>, Func<T, TResult>, Int32) | Overloaded.
Returns the bottom n results.
(Defined by MongoEnumerable.) |
![]() | BottomN<T, TKey, TResult>(SortDefinition<T>, Func<T, TResult>, TKey, Func<TKey, Int32>) | Overloaded.
Returns the bottom n results.
(Defined by MongoEnumerable.) |
![]() | ContainsAll<T> |
Determines whether a sequence contains all of the specified values.
(Defined by LinqToMongo.) |
![]() | ContainsAny<T> |
Determines whether a sequence contains any of the specified values.
(Defined by LinqToMongo.) |
![]() | CountAsync<TSource>(CancellationToken) | Overloaded.
Returns the number of elements in a sequence.
(Defined by MongoQueryable.) |
![]() | CountAsync<TSource>(Expression<Func<TSource, Boolean>>, CancellationToken) | Overloaded.
Returns the number of elements in the specified sequence that satisfies a condition.
(Defined by MongoQueryable.) |
![]() | Densify<TSource>(Expression<Func<TSource, Object>>, DensifyRange, IEnumerable<Expression<Func<TSource, Object>>>) | Overloaded.
Adds a $densify stage to the LINQ pipeline.
(Defined by MongoQueryable.) |
![]() | Densify<TSource>(Expression<Func<TSource, Object>>, DensifyRange,Expression<Func<TSource, Object>>[]) | Overloaded.
Adds a $densify stage to the LINQ pipeline.
(Defined by MongoQueryable.) |
![]() | Distinct<TSource> |
Returns distinct elements from a sequence by using the default equality comparer to compare values.
(Defined by MongoQueryable.) |
![]() | Explain<T>() | Overloaded.
Returns an explanation of how the query was executed (instead of the results).
(Defined by LinqExtensionMethods.) |
![]() | Explain<T>(Boolean) | Overloaded.
Returns an explanation of how the query was executed (instead of the results).
(Defined by LinqExtensionMethods.) |
![]() | First<T> |
Returns the first document of a cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | FirstAsync<T>(CancellationToken) | Overloaded.
Returns the first document of a cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | FirstAsync<TSource>(CancellationToken) | Overloaded.
Returns the first element of a sequence.
(Defined by MongoQueryable.) |
![]() | FirstAsync<TSource>(Expression<Func<TSource, Boolean>>, CancellationToken) | Overloaded.
Returns the first element of a sequence that satisfies a specified condition.
(Defined by MongoQueryable.) |
![]() | FirstMatchingElement<T> |
Represents the first matching element in an array used in a query (corresponds to the server's "$" update operator).
(Defined by MongoEnumerable.) |
![]() | FirstN<T, TResult>(Func<T, TResult>, Int32) | Overloaded.
Returns the first n results.
(Defined by MongoEnumerable.) |
![]() | FirstN<T, TKey, TResult>(Func<T, TResult>, TKey, Func<TKey, Int32>) | Overloaded.
Returns the first n results.
(Defined by MongoEnumerable.) |
![]() | FirstOrDefault<T> |
Returns the first document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | FirstOrDefaultAsync<T>(CancellationToken) | Overloaded.
Returns the first document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | FirstOrDefaultAsync<TSource>(CancellationToken) | Overloaded.
Returns the first element of a sequence, or a default value if the sequence contains no elements.
(Defined by MongoQueryable.) |
![]() | FirstOrDefaultAsync<TSource>(Expression<Func<TSource, Boolean>>, CancellationToken) | Overloaded.
Returns the first element of a sequence that satisfies a specified condition or a default value if no such element is found.
(Defined by MongoQueryable.) |
![]() | ForEachAsync<T>(Func<T, Task>, CancellationToken) | Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ForEachAsync<T>(Func<T, Int32, Task>, CancellationToken) | Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ForEachAsync<T>(Action<T>, CancellationToken) | Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ForEachAsync<T>(Action<T, Int32>, CancellationToken) | Overloaded.
Calls a delegate for each document returned by the cursor.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | GroupBy<TSource, TKey>(Expression<Func<TSource, TKey>>) | Overloaded.
Groups the elements of a sequence according to a specified key selector function.
(Defined by MongoQueryable.) |
![]() | GroupBy<TSource, TKey, TResult>(Expression<Func<TSource, TKey>>, Expression<Func<TKey, IEnumerable<TSource>, TResult>>) | Overloaded.
Groups the elements of a sequence according to a specified key selector function
and creates a result value from each group and its key.
(Defined by MongoQueryable.) |
![]() | GroupJoin<TOuter, TInner, TKey, TResult>(IEnumerable<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, IEnumerable<TInner>, TResult>>) | Overloaded.
Correlates the elements of two sequences based on key equality and groups the results.
(Defined by MongoQueryable.) |
![]() | GroupJoin<TOuter, TInner, TKey, TResult>(IMongoCollection<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, IEnumerable<TInner>, TResult>>) | Overloaded.
Correlates the elements of two sequences based on key equality and groups the results.
(Defined by MongoQueryable.) |
![]() | Join<TOuter, TInner, TKey, TResult>(IEnumerable<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, TInner, TResult>>) | Overloaded.
Correlates the elements of two sequences based on matching keys.
(Defined by MongoQueryable.) |
![]() | Join<TOuter, TInner, TKey, TResult>(IMongoCollection<TInner>, Expression<Func<TOuter, TKey>>, Expression<Func<TInner, TKey>>, Expression<Func<TOuter, TInner, TResult>>) | Overloaded.
Correlates the elements of two sequences based on matching keys.
(Defined by MongoQueryable.) |
![]() | LastN<T, TResult>(Func<T, TResult>, Int32) | Overloaded.
Returns the last n results.
(Defined by MongoEnumerable.) |
![]() | LastN<T, TKey, TResult>(Func<T, TResult>, TKey, Func<TKey, Int32>) | Overloaded.
Returns the last n results.
(Defined by MongoEnumerable.) |
![]() | LongCountAsync<TSource>(CancellationToken) | Overloaded.
Returns the number of elements in a sequence.
(Defined by MongoQueryable.) |
![]() | LongCountAsync<TSource>(Expression<Func<TSource, Boolean>>, CancellationToken) | Overloaded.
Returns the number of elements in the specified sequence that satisfies a condition.
(Defined by MongoQueryable.) |
![]() | MaxAsync<TSource>(CancellationToken) | Overloaded.
Returns the maximum value in a generic IMongoQueryable<T>.
(Defined by MongoQueryable.) |
![]() | MaxAsync<TSource, TResult>(Expression<Func<TSource, TResult>>, CancellationToken) | Overloaded.
Invokes a projection function on each element of a generic IMongoQueryable<T> and returns the maximum resulting value.
(Defined by MongoQueryable.) |
![]() | MaxN<T, TResult>(Func<T, TResult>, Int32) | Overloaded.
Returns the max n results.
(Defined by MongoEnumerable.) |
![]() | MaxN<T, TKey, TResult>(Func<T, TResult>, TKey, Func<TKey, Int32>) | Overloaded.
Returns the max n results.
(Defined by MongoEnumerable.) |
![]() | MinAsync<TSource>(CancellationToken) | Overloaded.
Returns the minimum value in a generic IMongoQueryable<T>.
(Defined by MongoQueryable.) |
![]() | MinAsync<TSource, TResult>(Expression<Func<TSource, TResult>>, CancellationToken) | Overloaded.
Invokes a projection function on each element of a generic IMongoQueryable<T> and returns the minimum resulting value.
(Defined by MongoQueryable.) |
![]() | MinN<T, TResult>(Func<T, TResult>, Int32) | Overloaded.
Returns the min n results.
(Defined by MongoEnumerable.) |
![]() | MinN<T, TKey, TResult>(Func<T, TResult>, TKey, Func<TKey, Int32>) | Overloaded.
Returns the min n results.
(Defined by MongoEnumerable.) |
![]() | OfType<TResult> |
Filters the elements of an IMongoQueryable based on a specified type.
(Defined by MongoQueryable.) |
![]() | OrderBy<TSource, TKey> |
Sorts the elements of a sequence in ascending order according to a key.
(Defined by MongoQueryable.) |
![]() | OrderByDescending<TSource, TKey> |
Sorts the elements of a sequence in descending order according to a key.
(Defined by MongoQueryable.) |
![]() | Sample<TSource> |
Returns a sample of the elements in the source.
(Defined by MongoQueryable.) |
![]() | Search<TSource> |
Appends a $search stage to the LINQ pipeline.
(Defined by MongoQueryable.) |
![]() | SearchMeta<TSource> |
Appends a $searchMeta stage to the LINQ pipeline.
(Defined by MongoQueryable.) |
![]() | Select<TSource, TResult> |
Projects each element of a sequence into a new form by incorporating the
element's index.
(Defined by MongoQueryable.) |
![]() | SelectMany<TSource, TResult>(Expression<Func<TSource, IEnumerable<TResult>>>) | Overloaded.
Projects each element of a sequence to an IEnumerable<T> and combines the resulting sequences into one sequence.
(Defined by MongoQueryable.) |
![]() | SelectMany<TSource, TCollection, TResult>(Expression<Func<TSource, IEnumerable<TCollection>>>, Expression<Func<TSource, TCollection, TResult>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | Single<T> |
Returns the only document of a cursor returned by a cursor source. This method throws an exception if the cursor does not contain exactly one document.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | SingleAsync<T>(CancellationToken) | Overloaded.
Returns the only document of a cursor returned by a cursor source. This method throws an exception if the cursor does not contain exactly one document.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | SingleAsync<TSource>(CancellationToken) | Overloaded.
Returns the only element of a sequence, and throws an exception if there is not exactly one element in the sequence.
(Defined by MongoQueryable.) |
![]() | SingleAsync<TSource>(Expression<Func<TSource, Boolean>>, CancellationToken) | Overloaded.
Returns the only element of a sequence that satisfies a specified condition, and throws an exception if more than one such element exists.
(Defined by MongoQueryable.) |
![]() | SingleOrDefault<T> |
Returns the only document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
This method throws an exception if the cursor contains more than one document.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | SingleOrDefaultAsync<T>(CancellationToken) | Overloaded.
Returns the only document of a cursor returned by a cursor source, or a default value if the cursor contains no documents.
This method throws an exception if the cursor contains more than one document.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | SingleOrDefaultAsync<TSource>(CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | SingleOrDefaultAsync<TSource>(Expression<Func<TSource, Boolean>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | Skip<TSource>(Int32) | Overloaded.
Bypasses a specified number of elements in a sequence and then returns the
remaining elements.
(Defined by MongoQueryable.) |
![]() | Skip<TSource>(Int64) | Overloaded.
Bypasses a specified number of elements in a sequence and then returns the
remaining elements.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulation<T>(Func<T, Int32>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulation<T>(Func<T, Nullable<Int32>>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulation<T>(Func<T, Int64>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulation<T>(Func<T, Nullable<Int64>>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulation<T>(Func<T, Single>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulation<T>(Func<T, Nullable<Single>>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulation<T>(Func<T, Double>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulation<T>(Func<T, Nullable<Double>>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulation<T>(Func<T, Decimal>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulation<T>(Func<T, Nullable<Decimal>>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationPopulation<TSource>(Expression<Func<TSource, Int32>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulation<TSource>(Expression<Func<TSource, Nullable<Int32>>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulation<TSource>(Expression<Func<TSource, Int64>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulation<TSource>(Expression<Func<TSource, Nullable<Int64>>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulation<TSource>(Expression<Func<TSource, Single>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulation<TSource>(Expression<Func<TSource, Nullable<Single>>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulation<TSource>(Expression<Func<TSource, Double>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulation<TSource>(Expression<Func<TSource, Nullable<Double>>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulation<TSource>(Expression<Func<TSource, Decimal>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulation<TSource>(Expression<Func<TSource, Nullable<Decimal>>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulationAsync<TSource>(Expression<Func<TSource, Int32>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulationAsync<TSource>(Expression<Func<TSource, Nullable<Int32>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulationAsync<TSource>(Expression<Func<TSource, Int64>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulationAsync<TSource>(Expression<Func<TSource, Nullable<Int64>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulationAsync<TSource>(Expression<Func<TSource, Single>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulationAsync<TSource>(Expression<Func<TSource, Nullable<Single>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulationAsync<TSource>(Expression<Func<TSource, Double>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulationAsync<TSource>(Expression<Func<TSource, Nullable<Double>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulationAsync<TSource>(Expression<Func<TSource, Decimal>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationPopulationAsync<TSource>(Expression<Func<TSource, Nullable<Decimal>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSample<T>(Func<T, Int32>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationSample<T>(Func<T, Nullable<Int32>>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationSample<T>(Func<T, Int64>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationSample<T>(Func<T, Nullable<Int64>>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationSample<T>(Func<T, Single>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationSample<T>(Func<T, Nullable<Single>>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationSample<T>(Func<T, Double>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationSample<T>(Func<T, Nullable<Double>>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationSample<T>(Func<T, Decimal>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationSample<T>(Func<T, Nullable<Decimal>>) | Overloaded.
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.
(Defined by MongoEnumerable.) |
![]() | StandardDeviationSample<TSource>(Expression<Func<TSource, Int32>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSample<TSource>(Expression<Func<TSource, Nullable<Int32>>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSample<TSource>(Expression<Func<TSource, Int64>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSample<TSource>(Expression<Func<TSource, Nullable<Int64>>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSample<TSource>(Expression<Func<TSource, Single>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSample<TSource>(Expression<Func<TSource, Nullable<Single>>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSample<TSource>(Expression<Func<TSource, Double>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSample<TSource>(Expression<Func<TSource, Nullable<Double>>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSample<TSource>(Expression<Func<TSource, Decimal>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSample<TSource>(Expression<Func<TSource, Nullable<Decimal>>>) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSampleAsync<TSource>(Expression<Func<TSource, Int32>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSampleAsync<TSource>(Expression<Func<TSource, Nullable<Int32>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSampleAsync<TSource>(Expression<Func<TSource, Int64>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSampleAsync<TSource>(Expression<Func<TSource, Nullable<Int64>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSampleAsync<TSource>(Expression<Func<TSource, Single>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSampleAsync<TSource>(Expression<Func<TSource, Nullable<Single>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSampleAsync<TSource>(Expression<Func<TSource, Double>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSampleAsync<TSource>(Expression<Func<TSource, Nullable<Double>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSampleAsync<TSource>(Expression<Func<TSource, Decimal>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | StandardDeviationSampleAsync<TSource>(Expression<Func<TSource, Nullable<Decimal>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | SumAsync<TSource>(Expression<Func<TSource, Decimal>>, CancellationToken) | Overloaded.
Computes the sum of the sequence of Decimal values that is obtained
by invoking a projection function on each element of the input sequence.
(Defined by MongoQueryable.) |
![]() | SumAsync<TSource>(Expression<Func<TSource, Nullable<Decimal>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | SumAsync<TSource>(Expression<Func<TSource, Double>>, CancellationToken) | Overloaded.
Computes the sum of the sequence of Double values that is obtained
by invoking a projection function on each element of the input sequence.
(Defined by MongoQueryable.) |
![]() | SumAsync<TSource>(Expression<Func<TSource, Nullable<Double>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | SumAsync<TSource>(Expression<Func<TSource, Single>>, CancellationToken) | Overloaded.
Computes the sum of the sequence of Single values that is obtained
by invoking a projection function on each element of the input sequence.
(Defined by MongoQueryable.) |
![]() | SumAsync<TSource>(Expression<Func<TSource, Nullable<Single>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | SumAsync<TSource>(Expression<Func<TSource, Int32>>, CancellationToken) | Overloaded.
Computes the sum of the sequence of Int32 values that is obtained
by invoking a projection function on each element of the input sequence.
(Defined by MongoQueryable.) |
![]() | SumAsync<TSource>(Expression<Func<TSource, Nullable<Int32>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | SumAsync<TSource>(Expression<Func<TSource, Int64>>, CancellationToken) | Overloaded.
Computes the sum of the sequence of Int64 values that is obtained
by invoking a projection function on each element of the input sequence.
(Defined by MongoQueryable.) |
![]() | SumAsync<TSource>(Expression<Func<TSource, Nullable<Int64>>>, CancellationToken) | Overloaded.
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.
(Defined by MongoQueryable.) |
![]() | Take<TSource>(Int32) | Overloaded.
Returns a specified number of contiguous elements from the start of a sequence.
(Defined by MongoQueryable.) |
![]() | Take<TSource>(Int64) | Overloaded.
Returns a specified number of contiguous elements from the start of a sequence.
(Defined by MongoQueryable.) |
![]() | ToEnumerable<T> |
Wraps a cursor source in an IEnumerable. Each time GetEnumerator is called a new cursor is fetched from the cursor source.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ToList<T> |
Returns a list containing all the documents returned by the cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | ToListAsync<T> |
Returns a list containing all the documents returned by the cursor returned by a cursor source.
(Defined by IAsyncCursorSourceExtensions.) |
![]() | Top<T, TResult> |
Returns the top n results.
(Defined by MongoEnumerable.) |
![]() | TopN<T, TResult>(SortDefinition<T>, Func<T, TResult>, Int32) | Overloaded.
Returns the top n results.
(Defined by MongoEnumerable.) |
![]() | TopN<T, TKey, TResult>(SortDefinition<T>, Func<T, TResult>, TKey, Func<TKey, Int32>) | Overloaded.
Returns the top n results.
(Defined by MongoEnumerable.) |
![]() | Where<TSource>(Expression<Func<TSource, Boolean>>) | Overloaded.
Filters a sequence of values based on a predicate.
(Defined by MongoQueryable.) |
![]() | Where<T>(Func<T, Boolean>, Int32) | Overloaded.
Filters a sequence of values based on a predicate and limits the number of results.
(Defined by MongoEnumerable.) |
![]() | WithIndex<T>(String) | Overloaded.
Sets an index hint on the query that's being built.
(Defined by LinqToMongo.) |
![]() | WithIndex<T>(BsonDocument) | Overloaded.
Sets an index hint on the query that's being built.
(Defined by LinqToMongo.) |