Skip to main content
A newer version of this page is available. .

ExpressionBase.Aggregate Property

Specifies the aggregate function.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

[DefaultValue(AggregationType.None)]
public AggregationType Aggregate { get; set; }

Property Value

Type Default Description
AggregationType **None**

An AggregationType enumeration value.

Available values:

Name Description
None

Aggregation is not applied.

Count

The number of values.

Max

The largest value.

Min

The smallest value.

Avg

The average of the values.

Sum

The sum of the values.

CountDistinct

The number of different values.

AvgDistinct

The average of different values.

SumDistinct

The sum of different values.

See Also