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