SubQueryReal extension
Extension methods for subqueries projected to a double expression.
Methods
-
avg(
) → Expr< double?> -
Available on SubQuery<
Take the average of the rows in this query using the(Expr< , provided by the SubQueryReal extensiondouble?> )>AVG
aggregate function. -
max(
) → Expr< double?> -
Available on SubQuery<
Take the largest row of the rows in this query using the(Expr< , provided by the SubQueryReal extensiondouble?> )>MAX
aggregate function. -
min(
) → Expr< double?> -
Available on SubQuery<
Take the smallest row of the rows in this query using the(Expr< , provided by the SubQueryReal extensiondouble?> )>MIN
aggregate function. -
sum(
) → Expr< double> -
Available on SubQuery<
Take the sum of the rows in this query using the(Expr< , provided by the SubQueryReal extensiondouble?> )>SUM
aggregate function.