SubQueryReal extension

Extension methods for subqueries projected to a double expression.

on

Methods

avg() Expr<double?>

Available on SubQuery<(Expr<double?>)>, provided by the SubQueryReal extension

Take the average of the rows in this query using the AVG aggregate function.
max() Expr<double?>

Available on SubQuery<(Expr<double?>)>, provided by the SubQueryReal extension

Take the largest row of the rows in this query using the MAX aggregate function.
min() Expr<double?>

Available on SubQuery<(Expr<double?>)>, provided by the SubQueryReal extension

Take the smallest row of the rows in this query using the MIN aggregate function.
sum() Expr<double>

Available on SubQuery<(Expr<double?>)>, provided by the SubQueryReal extension

Take the sum of the rows in this query using the SUM aggregate function.