QueryReal extension

Extension methods for queries projected to a double expression.

on

Methods

avg() QuerySingle<(Expr<double?>)>

Available on Query<(Expr<double?>)>, provided by the QueryReal extension

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

Available on Query<(Expr<double?>)>, provided by the QueryReal extension

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

Available on Query<(Expr<double?>)>, provided by the QueryReal extension

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

Available on Query<(Expr<double?>)>, provided by the QueryReal extension

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