Skip to main content

GroupOperatorType Enum

Enumerates group operator types.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public enum GroupOperatorType

Members

Name Description
And

Groups operands with logical AND.

To create the logical AND operator using the CriteriaOperator.Parse method use the following syntax:

CriteriaOperator.Parse(“Field1 > 100 AND Field2 < 150”)

Or

Groups operands with logical OR.

To create the logical OR operator using the CriteriaOperator.Parse method use the following syntax:

CriteriaOperator.Parse(“Field1 > 100 OR Field2 < 150”)

Remarks

The values listed by this enumeration are used to set the GroupOperator.OperatorType property.

See Also