Enum AggregateFunction
Holds the type of aggregate functions that can be performed against a set of data in sql
Namespace: LemonEdge.Utils.Database
Assembly: Utils.dll
Syntax
public enum AggregateFunction : short
Fields
Name | Description |
---|---|
Average | Average of all results |
Count | Count the number of results |
Max | The first maximum value from the result set |
Min | The first minimum value from the result set |
None | No aggregate function |
Sum | The total of the values from the result set |