Overload List
| Name | Description | |
|---|---|---|
| AverageAsQuery(IQueryable Decimal ) |
Same as Average(IQueryable Decimal ), but returns an IQueryable<Decimal>
containing a single element. Computes the average of a set of decimal values in the input
dataset.
| |
| AverageAsQuery(IQueryable Double ) |
Same as Average(IQueryable Double ), but returns an IQueryable<Double>
containing a single element. Computes the average of a set of double values in the input
dataset.
| |
| AverageAsQuery(IQueryable Int32 ) |
Same as Average(IQueryable Int32 ), but returns an IQueryable<Double>
containing a single element. Computes the average of a set of Int32 values in the input
dataset.
| |
| AverageAsQuery(IQueryable Int64 ) |
Same as Average(IQueryable Int64 ), but returns an IQueryable<Double>
containing a single element. Computes the average of a set of Int64 values in the input
dataset.
| |
| AverageAsQuery(IQueryable Nullable Decimal ) |
Same as Average(IQueryable Nullable Decimal ), but returns an IQueryable<Nullable<Decimal>>
containing a single element. Computes the average of a set of nullable decimal values in the input
dataset.
| |
| AverageAsQuery(IQueryable Nullable Double ) |
Same as Average(IQueryable Nullable Double ), but returns an IQueryable<Nullable<Double>>
containing a single element. Computes the average of a set of nullable double values in the input
dataset.
| |
| AverageAsQuery(IQueryable Nullable Int32 ) |
Same as Average(IQueryable Nullable Int32 ), but returns an IQueryable<Nullable<Double>>
containing a single element. Computes the average of a set of nullable Int32 values in the input
dataset.
| |
| AverageAsQuery(IQueryable Nullable Int64 ) |
Same as Average(IQueryable Nullable Int64 ), but returns an IQueryable<Nullable<Double>>
containing a single element. Computes the average of a set of nullable Int64 values in the input
dataset.
| |
| AverageAsQuery(IQueryable Nullable Single ) |
Same as Average(IQueryable Nullable Single ), but returns an IQueryable<Nullable<Single>>
containing a single element. Computes the average of a set of nullable float values in the input
dataset.
| |
| AverageAsQuery(IQueryable Single ) |
Same as Average(IQueryable Single ), but returns an IQueryable<Single>
containing a single element. Computes the average of a set of float values in the input
dataset.
| |
| AverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Decimal ) |
Same as Average TSource (IQueryable TSource , Expression Func TSource, Decimal ), but returns an IQueryable<Decimal>
containing a single element. Computes the average of a set of decimal values that
is obtained by applying a function to each element of the input dataset.
| |
| AverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Double ) |
Same as Average TSource (IQueryable TSource , Expression Func TSource, Double ), but returns an IQueryable<Double>
containing a single element. Computes the average of a set of double values that
is obtained by applying a function to each element of the input dataset.
| |
| AverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Int32 ) |
Same as Average TSource (IQueryable TSource , Expression Func TSource, Int32 ), but returns an IQueryable<Double>
containing a single element. Computes the average of a set of Int32 values that
is obtained by applying a function to each element of the input dataset.
| |
| AverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Int64 ) |
Same as Average TSource (IQueryable TSource , Expression Func TSource, Int64 ), but returns an IQueryable<Double>
containing a single element. Computes the average of a set of Int64 values that
is obtained by applying a function to each element of the input dataset.
| |
| AverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Nullable Decimal ) |
Same as Average TSource (IQueryable TSource , Expression Func TSource, Nullable Decimal ), but returns an IQueryable<Nullable<Decimal>>
containing a single element. Computes the average of a set of nullable decimal values that
is obtained by applying a function to each element of the input dataset.
| |
| AverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Nullable Double ) |
Same as Average TSource (IQueryable TSource , Expression Func TSource, Nullable Double ), but returns an IQueryable<Nullable<Double>>
containing a single element. Computes the average of a set of nullable double values that
is obtained by applying a function to each element of the input dataset.
| |
| AverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Nullable Int32 ) |
Same as Average TSource (IQueryable TSource , Expression Func TSource, Nullable Int32 ), but returns an IQueryable<Nullable<Double>>
containing a single element. Computes the average of a set of nullable Int32 values that
is obtained by applying a function to each element of the input dataset.
| |
| AverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Nullable Int64 ) |
Same as Average TSource (IQueryable TSource , Expression Func TSource, Nullable Int64 ), but returns an IQueryable<Nullable<Double>>
containing a single element. Computes the average of a set of nullable Int64 values that
is obtained by applying a function to each element of the input dataset.
| |
| AverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Nullable Single ) |
Same as Average TSource (IQueryable TSource , Expression Func TSource, Nullable Single ), but returns an IQueryable<Nullable<Single>>
containing a single element. Computes the average of a set of nullable float values that
is obtained by applying a function to each element of the input dataset.
| |
| AverageAsQuery TSource (IQueryable TSource , Expression Func TSource, Single ) |
Same as Average TSource (IQueryable TSource , Expression Func TSource, Single ), but returns an IQueryable<Single>
containing a single element. Computes the average of a set of float values that
is obtained by applying a function to each element of the input dataset.
|
See Also