CriteriaOperator.GetCustomAggregate(String) Method
In This Article
Searches custom aggregate functions registered in an application via the RegisterCustomAggregate(ICustomAggregate) and RegisterCustomAggregates(IEnumerable<ICustomAggregate>) method calls for a function with a specified name.
Namespace: DevExpress.Data.Filtering
Assembly: DevExpress.Data.v24.2.dll
NuGet Package: DevExpress.Data
#Declaration
public static ICustomAggregate GetCustomAggregate(
string aggregateName
)
#Parameters
Name | Type | Description |
---|---|---|
aggregate |
String | A custom aggregate function’s name. This value cannot be null (Nothing in Visual Basic) or match a standard aggregate name: Sum, Min, Max, Avg, Count, Exists, or Single. |
#Returns
Type | Description |
---|---|
ICustom |
An ICustom |
See Also