Click or drag to resize

ComparisonOperator Enumeration

Enum definition for the operator used in the FieldCompareValue Predicate.

Namespace:  SD.LLBLGen.Pro.ORMSupportClasses
Assembly:  SD.LLBLGen.Pro.ORMSupportClasses (in SD.LLBLGen.Pro.ORMSupportClasses.dll) Version: 5.5.0.0 (5.5.18.1019)
Syntax
public enum ComparisonOperator
Members
  Member nameValueDescription
Equal0 == . The only operator useful for boolean (bit) Fields.
LessEqual1 <=
LesserThan2 <
GreaterEqual3 >=
GreaterThan4 >
NotEqual5 <> or !=
None6 No comparison specified. Used when there's nothing to compare with, the field is the value to use as predicate.
See Also