Skip to main content

Enum TabularAggregateFunction

Namespace: Varigence.Languages.Biml.Tabular

Assembly: Biml.dll

C#


public enum TabularAggregateFunction

Fields

FieldsDescription
AverageSpecifies that the column values should be averaged.
CountSpecifies that the count of non-empty column values should be used.
DefaultSpecifies that the default aggregate function for the column data type should be used.
DistinctCountSpecifies that the count of distinct column values should be used.
MaxSpecifies that maximum column value should be used.
MinSpecifies that minimum column value should be used.
NoneSpecifies that the column should not be aggregated.
SumSpecifies that column values should be added together to compute a sum.