ComparisonOperator Enumeration

Enumeration used to define comparisons for evaluated metric set state conditions.

Namespace:  Dundas.BI.Entities.MetricSets
Assembly:  Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (24.2.0.1000)
Syntax
public enum ComparisonOperator
Members
  Member nameValueDescription
None0The comparison operator is not set.
EqualTo1The comparison checks if the left operand is equal with the right operand.
GreaterThan2The comparison checks if the left operand is greater than the right operand.
GreaterThanOrEqualTo3The comparison checks if the left operand is greater or equal with the right operand.
LessThan4The comparison checks if the left operand is smaller than the right operand.
LessThanOrEqualTo5The comparison checks if the left operand is smaller or equal with the right operand.
NotEqualTo6The comparison checks if the left operand is not equal with the right operand.
See Also