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

CriteriaOperator.RegisterCustomAggregates(IEnumerable<ICustomAggregate>) Method

Registers custom aggregate functions to use in any CriteriaOperator-based criteria in your application.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v19.2.dll

Declaration

public static void RegisterCustomAggregates(
    IEnumerable<ICustomAggregate> customAggregates
)

Parameters

Name Type Description
customAggregates IEnumerable<ICustomAggregate>

A collection of custom aggregate functions to register.

Remarks

To search for a specific registered custom aggregate function, call the CriteriaOperator.GetCustomAggregate function.

Note

  • The RegisterCustomAggregates method throws an exception if one of the customAggregates has already been registered.
  • Each of the customAggregates must have a unique Name property value. If you use standard aggregate names (Min, Max, Sum, Avg, Single, Exists, and Count), an exception is raised.
See Also