SubQueryInteger extension

Extension methods for subqueries projected to an int expression.

on

Methods

avg() Expr<double?>

Available on SubQuery<(Expr<int?>)>, provided by the SubQueryInteger extension

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

Available on SubQuery<(Expr<int?>)>, provided by the SubQueryInteger extension

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

Available on SubQuery<(Expr<int?>)>, provided by the SubQueryInteger extension

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

Available on SubQuery<(Expr<int?>)>, provided by the SubQueryInteger extension

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