Enum AggregateType
Specifies the aggregate operation to be applied to a data column.
public enum AggregateType
- Extension Methods
Fields
Avg = 2Average of values.
Count = 3Number of values.
Max = 5Maximum value.
Min = 4Minimum value.
None = 0No aggregate operation.
Sum = 1Sum of values.