AggregateOperand.AggregatedExpression Property
Gets or sets the operator that defines how to process objects from a collection that CollectionProperty specifies.
Namespace: DevExpress.XamarinForms.Core.Filtering
Assembly: DevExpress.XamarinForms.Core.dll
NuGet Package: DevExpress.XamarinForms.Core
Declaration
public CriteriaOperator AggregatedExpression { get; set; }
Property Value
Type | Description |
---|---|
CriteriaOperator | The operator that defines how to process objects from a collection that CollectionProperty specifies. |
Remarks
This property must specify a path through object relationships (Sum([Income])
or Sum([Cargo.Price])
), and does not support nested expressions and complex property paths like Max(Document.<PersonID>LastName)
.
See Also