AggregateOperand Constructors
An aggregate operator which calculates aggregate expressions (MIN, MAX, SUM, etc.)Name | Parameters | Description |
---|---|---|
AggregateOperand() | none | Initializes a new instance of the AggregateOperand class with default settings. |
AggregateOperand(OperandProperty, CriteriaOperator, Aggregate, CriteriaOperator) | collectionProperty, aggregatedExpression, type, condition | Initializes a new instance of the AggregateOperand class with the specified settings. |
AggregateOperand(OperandProperty, IEnumerable<CriteriaOperator>, String, CriteriaOperator) | collectionProperty, aggregatedExpressions, customAggregateName, condition | Initializes a new instance of the AggregateOperand class with specified settings. |
AggregateOperand(String, Aggregate, CriteriaOperator) | collectionProperty, type, condition | Initializes a new instance of the AggregateOperand class. |
AggregateOperand(String, Aggregate) | collectionProperty, type | Initializes a new instance of the AggregateOperand class with the specified collection property and operator type. |
AggregateOperand(String, String, Aggregate, CriteriaOperator) | collectionProperty, aggregatedExpression, type, condition | Initializes a new instance of the AggregateOperand class with the specified settings. |
AggregateOperand(String, String, Aggregate) | collectionProperty, aggregatedExpression, type | Initializes a new instance of the AggregateOperand class with the specified settings. |
AggregateOperand(String, String, CriteriaOperator) | collectionProperty, customAggregateName, condition | Initializes a new instance of the AggregateOperand class with specified settings. |
AggregateOperand(String, String) | collectionProperty, customAggregateName | Initializes a new instance of the AggregateOperand class with specified settings. |
See Also