Skip to main content
A newer version of this page is available. .

AggregateOperand(OperandProperty, CriteriaOperator, Aggregate, CriteriaOperator) Constructor

Initializes a new instance of the AggregateOperand class with the specified settings.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v19.2.dll

Declaration

public AggregateOperand(
    OperandProperty collectionProperty,
    CriteriaOperator aggregatedExpression,
    Aggregate type,
    CriteriaOperator condition
)

Parameters

Name Type Description
collectionProperty OperandProperty

An OperandProperty object which represents the collection property. This value is assigned to the AggregateOperand.CollectionProperty property.

aggregatedExpression CriteriaOperator

A CriteriaOperator object which represents the aggregated expression. This value is assigned to the AggregateOperand.AggregatedExpression property.

type Aggregate

An Aggregate enumeration value which specifies the type of the aggregate operator. This value is assigned to the AggregateOperand.AggregateType property.

condition CriteriaOperator

A CriteriaOperator object which represents the filter criteria. null (Nothing in Visual Basic) if the filter criteria isn’t needed. This value is assigned to the AggregateOperand.Condition property.

See Also