JoinOperand.Custom(String, IEnumerable<CriteriaOperator>) Method
In This Article
Creates a new custom JoinOperand with a custom aggregate function.
Namespace: DevExpress.Data.Filtering
Assembly: DevExpress.Data.v24.2.dll
NuGet Package: DevExpress.Data
#Declaration
public JoinOperand Custom(
string customAggregateName,
IEnumerable<CriteriaOperator> aggregatedExpressions
)
#Parameters
Name | Type | Description |
---|---|---|
custom |
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. |
aggregated |
IEnumerable<Criteria |
A collection of aggregated expressions to be assigned to the Join |
#Returns
Type | Description |
---|---|
Join |
An Join |
See Also