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