Fork me on GitHubEpicdominant domains
APIEpic.Query.Relational.Predicates

Epic.Query.Relational.Predicates
Epic.Query.Relational.Predicates express common relational predicates.
It's defined in Epic.Query.
Declaration Syntax
C#
namespace Epic.Query.Relational.Predicates
Types
All TypesClasses
TypeDescription
And
Implementation of the And predicate. It is true if both operands are true.
BinaryPredicateBase

This is the base class for those predicates having two Predicate as operands.

Examples are: And, Or.

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

This is the base class for those predicates having two Scalar as operands.

Examples are: Less, Greater, Equal.

UnaryPredicateBase

This is the base class for those predicates having one Predicate as operand.

Examples are: Not.

Xor
Implementation of the Xor predicate. It is true if either operand is true, but not both of them.
blog comments powered by Disqus