BaseAggregate<DT> extension

Provides aggregate functions that are available for each expression.

on

Methods

count({bool distinct = false, Expression<bool?>? filter}) Expression<int>

Available on Expression<DT>, provided by the BaseAggregate extension

Returns how often this expression is non-null in the current group.
groupConcat({String separator = ',', bool distinct = false, Expression<bool?>? filter}) Expression<String?>

Available on Expression<DT>, provided by the BaseAggregate extension

Returns the concatenation of all non-null values in the current group, joined by the separator.