Enum TabularAggregateFunction
Namespace: Varigence.Languages.Biml.Tabular
Assembly: Biml.dll
C#
public enum TabularAggregateFunction
Fields
| Fields | Description |
|---|---|
| Average | Specifies that the column values should be averaged. |
| Count | Specifies that the count of non-empty column values should be used. |
| Default | Specifies that the default aggregate function for the column data type should be used. |
| DistinctCount | Specifies that the count of distinct column values should be used. |
| Max | Specifies that maximum column value should be used. |
| Min | Specifies that minimum column value should be used. |
| None | Specifies that the column should not be aggregated. |
| Sum | Specifies that column values should be added together to compute a sum. |