AggregateOperation Enum

Definition

Defines the aggregate operation to perform on a column (property) in a rowset.

public enum AggregateOperation
type AggregateOperation = 
Public Enum AggregateOperation
Inheritance
AggregateOperation

Fields

Count 4

Count all occurrences of a property.

CountDistinct 5

Count all distinct property values (for example, count the number of distinct names of users that submitted jobs).

Distinct 6

Get the distinct property values (for example, get the distinct names of users that submitted jobs).

Max 3

For integer properties, find the object with the maximum value (for example, the task with the longest run-time).

Min 2

For integer properties, find the object with the minimum value (for example, the task with the shortest run-time).

None 0

Do not perform aggregation on this column (property).

Sum 1

For integer properties, sum the values for all objects (for example, sum the run-time for all tasks).

Applies to