Overload List
Name | Description | |
---|---|---|
SumAsQuery(IQueryableDecimal) |
Same as Sum(IQueryableDecimal), but returns an IQueryable<Decimal>
containing a single element. Computes the sum of a set of decimal values.
| |
SumAsQuery(IQueryableDouble) |
Same as Sum(IQueryableDouble), but returns an IQueryable<Double>
containing a single element. Computes the sum of a set of double values.
| |
SumAsQuery(IQueryableInt32) |
Same as Sum(IQueryableInt32), but returns an IQueryable<Int32>
containing a single element. Computes the sum of a set of Int32 values.
| |
SumAsQuery(IQueryableInt64) |
Same as Sum(IQueryableInt64), but returns an IQueryable<Int64>
containing a single element. Computes the sum of a set of Int64 values.
| |
SumAsQuery(IQueryableNullableDecimal) |
Same as Sum(IQueryableNullableDecimal), but returns an IQueryable<Nullable<Decimal>>
containing a single element. Computes the sum of a set of nullable decimal values.
| |
SumAsQuery(IQueryableNullableDouble) |
Same as Sum(IQueryableNullableDouble), but returns an IQueryable<Nullable<Double>>
containing a single element. Computes the sum of a set of nullable double values.
| |
SumAsQuery(IQueryableNullableInt32) |
Same as Sum(IQueryableNullableInt32), but returns an IQueryable<Nullable<Int32>>
containing a single element. Computes the sum of a set of nullable Int32 values.
| |
SumAsQuery(IQueryableNullableInt64) |
Same as Sum(IQueryableNullableInt64), but returns an IQueryable<Nullable<Int64>>
containing a single element. Computes the sum of a set of nullable Int64 values.
| |
SumAsQuery(IQueryableNullableSingle) |
Same as Sum(IQueryableNullableSingle), but returns an IQueryable<Nullable<Single>>
containing a single element. Computes the sum of a set of nullable float values.
| |
SumAsQuery(IQueryableSingle) |
Same as Sum(IQueryableSingle), but returns an IQueryable<Single>
containing a single element. Computes the sum of a set of float values.
| |
SumAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, Decimal) |
Same as SumTSource(IQueryableTSource, ExpressionFuncTSource, Decimal), but returns an IQueryable<Decimal>
containing a single element. Computes the sum of a set of decimal values that
is obtained by applying a function to each element of the input dataset.
| |
SumAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, Double) |
Same as SumTSource(IQueryableTSource, ExpressionFuncTSource, Double), but returns an IQueryable<Double>
containing a single element. Computes the sum of a set of double values that
is obtained by applying a function to each element of the input dataset.
| |
SumAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, Int32) |
Same as SumTSource(IQueryableTSource, ExpressionFuncTSource, Int32), but returns an IQueryable<Int32>
containing a single element. Computes the sum of a set of Int32 values that
is obtained by applying a function to each element of the input dataset.
| |
SumAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, Int64) |
Same as SumTSource(IQueryableTSource, ExpressionFuncTSource, Int64), but returns an IQueryable<Int64>
containing a single element. Computes the sum of a set of Int64 values that
is obtained by applying a function to each element of the input dataset.
| |
SumAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, NullableDecimal) |
Same as SumTSource(IQueryableTSource, ExpressionFuncTSource, NullableDecimal), but returns an IQueryable<Decimal>
containing a single element. Computes the sum of a set of nullable decimal values that
is obtained by applying a function to each element of the input dataset.
| |
SumAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, NullableDouble) |
Same as SumTSource(IQueryableTSource, ExpressionFuncTSource, NullableDouble), but returns an IQueryable<Double>
containing a single element. Computes the sum of a set of nullable double values that
is obtained by applying a function to each element of the input dataset.
| |
SumAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, NullableInt32) |
Same as SumTSource(IQueryableTSource, ExpressionFuncTSource, NullableInt32), but returns an IQueryable<Nullable<Int32>>
containing a single element. Computes the sum of a set of nullable Int32 values that
is obtained by applying a function to each element of the input dataset.
| |
SumAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, NullableInt64) |
Same as SumTSource(IQueryableTSource, ExpressionFuncTSource, NullableInt64), but returns an IQueryable<Int64>
containing a single element. Computes the sum of a set of nullable Int64 values that
is obtained by applying a function to each element of the input dataset.
| |
SumAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, NullableSingle) |
Same as SumTSource(IQueryableTSource, ExpressionFuncTSource, NullableSingle), but returns an IQueryable<Single>
containing a single element. Computes the sum of a set of nullable float values that
is obtained by applying a function to each element of the input dataset.
| |
SumAsQueryTSource(IQueryableTSource, ExpressionFuncTSource, Single) |
Same as SumTSource(IQueryableTSource, ExpressionFuncTSource, Single), but returns an IQueryable<Single>
containing a single element. Computes the sum of a set of float values that
is obtained by applying a function to each element of the input dataset.
|
See Also