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

CriteriaOperator Operators

The base Criteria Language operator.
Name Description
Addition(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that summarizes two specified criteria.
BitwiseAnd(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that applies the bitwise AND operator to the specified criteria.
BitwiseOr(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that applies the bitwise OR operator to the specified criteria.
Division(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that divides the first specified criterion by the second.
Equality(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that checks whether values that the criteria specify are equal.
Explicit(Boolean to CriteriaOperator) static Explicitly converts the bool value into a CriteriaOperator instance.
GreaterThan(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that checks whether a value the left criterion specifies is greater than a value the right criterion returns.
GreaterThanOrEqual(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that checks whether a value the left criterion specifies is greater than or equal to a value the right criterion returns.
Implicit(Byte to CriteriaOperator) static Implicitly converts the byte value into a <DevExpress.Data.Filtering.CriteriaOperator> instance.
Implicit(Byte[] to CriteriaOperator) static Implicitly converts the byte array into a CriteriaOperator instance.
Implicit(Char to CriteriaOperator) static Implicitly converts the char value into a CriteriaOperator instance.
Implicit(DateTime to CriteriaOperator) static Implicitly converts the <xreF:System.DateTime> value into a CriteriaOperator instance.
Implicit(Decimal to CriteriaOperator) static Implicitly converts the decimal value into a CriteriaOperator instance.
Implicit(Double to CriteriaOperator) static Implicitly converts the double value into a CriteriaOperator instance.
Implicit(Guid to CriteriaOperator) static Implicitly converts the Guid into a CriteriaOperator instance.
Implicit(Int16 to CriteriaOperator) static Implicitly converts the short value into a CriteriaOperator instance.
Implicit(Int32 to CriteriaOperator) static Implicitly converts the int value into a CriteriaOperator instance.
Implicit(Int64 to CriteriaOperator) static Implicitly converts the long value into a CriteriaOperator instance.
Implicit(Single to CriteriaOperator) static Implicitly converts the float value into a <DevExpress.Data.Filtering.CriteriaOperator> instance.
Implicit(String to CriteriaOperator) static Implicitly converts the String into a CriteriaOperator instance.
Implicit(TimeSpan to CriteriaOperator) static Implicitly converts the TimeSpan value into a CriteriaOperator instance.
Inequality(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that checks whether values that the criteria specify are not equal.
LessThan(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that checks whether a value the left criterion specifies is less than a value the right criterion returns.
LessThanOrEqual(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that checks whether a value the left criterion specifies is less than or equal to a value the right criterion returns.
LogicalNot(CriteriaOperator) static Initializes a new UnaryOperator instance that applies logical NOT operation to the current criterion.
Modulus(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that computes the dividing remainder of a value the left criterion specifies by a value the right criterion returns.
Multiply(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that multiplies the first specified criterion to the second.
Subtraction(CriteriaOperator, CriteriaOperator) static Initializes a new BinaryOperator instance that computes difference between a value the left criterion specifies and a value the right criterion returns.
UnaryNegation(CriteriaOperator) static Initializes a new UnaryOperator instance that applies unary minus operation to the current criterion.
UnaryPlus(CriteriaOperator) static Initializes a new UnaryOperator instance that applies unary plus operation to the current criterion.
See Also