Enum AggregateTransformOperation
C#
public enum AggregateTransformOperation
Fields
Average | Specifies that the average of values in a numeric column will be returned. |
Count | Specifies that the count of non-null items in the group will be returned. |
CountAll | Specifies that the count of items (including nulls) in the group will be returned. |
CountDistinct | Specifies that the count of distinct, non-null items in the group will be returned. |
GroupBy | Specifies that the column values will be grouped into sets with like values. |
Maximum | Specifies that the maximum of values in a numeric, date, or time column will be returned. |
Minimum | Specifies that the minumum of values in a numeric, date, or time column will be returned. |
Sum | Specifies that the sum of values in a numeric column will be returned. |