AggregateOperand.AggregatedExpression Property
In This Article
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
C#
public CriteriaOperator AggregatedExpression { get; set; }
#Property Value
Type | Description |
---|---|
Criteria |
The operator that defines how to process objects from a collection that Collection |
#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