Enum ComparisonOperator
Represents the method for comparing two parameter values.
public enum ComparisonOperator
- Extension Methods
Fields
[Display(Name = "Any")] Any = 6Indicates that the left parameter value can be any value.
[Display(Name = "=")] Equal = 0Indicates that the parameter values are equal.
[Display(Name = ">")] Greater = 2Indicates that the left parameter value is strictly greater than the right parameter value.
[Display(Name = ">=")] GreaterOrEqual = 3Indicates that the left parameter value is greater than or equal to the right parameter value.
[Display(Name = "IN")] In = 7Indicates that the left parameter value is contained within the right parameter value.
[Display(Name = "<")] Less = 4Indicates that the left parameter value is strictly less than the right parameter value.
[Display(Name = "<=")] LessOrEqual = 5Indicates that the left parameter value is less than or equal to the right parameter value.
[Display(Name = "!=")] NotEqual = 1Indicates that the parameter values are not equal.