ArithmeticAggregates<DT extends num> extension
Provides aggregate functions that are available for numeric expressions.
- on
-
- Expression<
DT?>
- Expression<
Methods
-
avg(
{Expression< bool?> ? filter}) → Expression<double?> -
Available on Expression<
Return the average of all non-null values in this group.DT?> , provided by the ArithmeticAggregates extension -
max(
{Expression< bool?> ? filter}) → Expression<DT?> -
Available on Expression<
Return the maximum of all non-null values in this group.DT?> , provided by the ArithmeticAggregates extension -
min(
{Expression< bool?> ? filter}) → Expression<DT?> -
Available on Expression<
Return the minimum of all non-null values in this group.DT?> , provided by the ArithmeticAggregates extension -
sum(
{Expression< bool?> ? filter}) → Expression<DT?> -
Available on Expression<
Calculate the sum of all non-null values in the group.DT?> , provided by the ArithmeticAggregates extension -
total(
{Expression< bool?> ? filter}) → Expression<double?> -
Available on Expression<
Calculate the sum of all non-null values in the group.DT?> , provided by the ArithmeticAggregates extension