Skip to main content
.NET 8.0+

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

IRuleSupportsCollectionAggregatesProperties.TargetCollectionAggregate Property

Specifies the aggregate function to be checked by the Validation Rule, if a Rule is applied to a collection property.

Namespace: DevExpress.Persistent.Validation

Assembly: DevExpress.Persistent.Base.v24.2.dll

#Declaration

Aggregate? TargetCollectionAggregate { get; set; }

#Property Value

Type Description
Nullable<Aggregate>

A Nullable<Aggregate> object specifying the aggregate function to be checked by the Validation Rule, if a Rule is applied to a collection property.

Available values:

Name Description
Exists

Determines whether the object exists in the collection.

Count

Returns the number of objects in the collection.

Max

Returns the maximum expression value in the collection.

Min

Returns the minimum expression value in the collection.

Avg

Evaluates the average of the values in the collection.

Sum

Returns the sum of all the expression values in the collection.

Single

Returns a single object from the collection. The collection must contain no more than one object.

Custom

Returns a custom aggregate function‘s result.

#Remarks

For additional information, refer to the Collection Validation topic.

See Also