Epic.Query.Relational.Predicates express common relational predicates.
It's defined in Epic.Query.
It's defined in Epic.Query.
Declaration Syntax
C# |
namespace Epic.Query.Relational.Predicates
Types
All Types | Classes |
Type | Description | |
---|---|---|
And |
Implementation of the And predicate. It is true if both operands are true.
| |
BinaryPredicateBase | ||
Equal |
Implementation of the Equal predicate. It is true if the first operand is equal to the second one.
| |
Greater |
Implementation of the Greater predicate. It is true if the first operand is greater than the second one.
| |
Less |
Implementation of the Less predicate. It is true if the first operand is less than the second one.
| |
Not |
Implementation of the Not predicate. It is true if its operand is false
| |
Or |
Implementation of the Or predicate. It is true if any operand is true.
| |
Predicate |
Base class for Predicates.
| |
PredicateExtension |
Extension methods for Predicate (and its specializations).
| |
ScalarPredicateBase | ||
UnaryPredicateBase | ||
Xor |
Implementation of the Xor predicate. It is true if either operand is true, but not both of them.
|