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

GroupOperator Class

A logical expression which groups two or more operands with a logical AND or OR.

Namespace: DevExpress.Data.Filtering

Assembly: DevExpress.Data.v20.2.dll

NuGet Packages: DevExpress.Data, DevExpress.WindowsDesktop.Data

Declaration

public sealed class GroupOperator :
    CriteriaOperator

The following members return GroupOperator objects:

Remarks

The GroupOperator can be used to build criteria expressions when filtering objects. To learn more, see Creating Criteria and Criteria Operators.

Example

This example retrieves the cars that belong in the Saloon category and which cost less than $100,000.

The result is shown in the image below:

XPView_GroupCriteria1

xpView1.GroupCriteria = GroupOperator.And(new BinaryOperator("Category", "Saloon"), 
  new BinaryOperator("Price", 100000, BinaryOperatorType.Less));

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GroupOperator class.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

Inheritance

See Also