NotOperator Class
Represents a logical NOT operation which is performed on the operand.
Namespace: DevExpress.Data.Filtering
Assembly: DevExpress.Data.v24.1.dll
NuGet Package: DevExpress.Data
Declaration
Example
This sample code selects customers who are younger than 20 years old, and older than 25.
The image below shows the result:
using DevExpress.Xpo;
using DevExpress.Data.Filtering;
// ...
CriteriaOperator filter = new NotOperator(new BetweenOperator("Age", 20, 25));
xpCustomers.Filter = filter;
Inheritance
Object
CriteriaOperator
UnaryOperator
NotOperator
See Also