Enum ConditionalOperator
- Namespace
- Dynamicweb.DataIntegration.Integration
- Assembly
- Dynamicweb.DataIntegration.dll
The operator to use when comparing input to existing rows.
public enum ConditionalOperator
Fields
Contains = 4Is the incomming key value contains the conditional value?
DifferentFrom = 3Is the incomming key different from the conditional value?
EndsWith = 8Is the end of the key value equal to conditional value?
EqualTo = 0Are the conditional value and the incomming keys equal?
GreaterThan = 2Is the incomming key greater than the conditional value?
GreaterThanOrEqualTo = 13Is the incoming key greater than or equal to the conditional value?
In = 5Is the incomming key value in the specified conditional range?
LessThan = 1Is the incomming key less than the conditional value?
LessThanOrEqualTo = 12Is the incoming key less than or equal to the conditional value?
NotContains = 10Does the incomming key value not contains the conditional value?
NotEndsWith = 9Is the end of the key value not equal to conditional value?
NotIn = 11Is the incomming key value not in the specified conditional range?
NotStartsWith = 7Is the start of the key value not equal to conditional value?
StartsWith = 6Is the start of the key value equal to conditional value?