Skip to main content

Enum AggregateTransformOperation

Namespace: Varigence.Languages.Biml.Transformation

Assembly: Biml.dll

C#


public enum AggregateTransformOperation

Fields

FieldsDescription
AverageSpecifies that the average of values in a numeric column will be returned.
CountSpecifies that the count of non-null items in the group will be returned.
CountAllSpecifies that the count of items (including nulls) in the group will be returned.
CountDistinctSpecifies that the count of distinct, non-null items in the group will be returned.
GroupBySpecifies that the column values will be grouped into sets with like values.
MaximumSpecifies that the maximum of values in a numeric, date, or time column will be returned.
MinimumSpecifies that the minumum of values in a numeric, date, or time column will be returned.
SumSpecifies that the sum of values in a numeric column will be returned.