MetadataConditionOperator Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Describes the type of comparison for two values in a metadata condition expression.
public enum class MetadataConditionOperator
[System.Runtime.Serialization.DataContract(Name="MetadataConditionOperator", Namespace="http://schemas.microsoft.com/xrm/2011/Metadata/Query")]
public enum MetadataConditionOperator
[<System.Runtime.Serialization.DataContract(Name="MetadataConditionOperator", Namespace="http://schemas.microsoft.com/xrm/2011/Metadata/Query")>]
type MetadataConditionOperator =
Public Enum MetadataConditionOperator
- Inheritance
-
MetadataConditionOperator
- Attributes
Fields
Name | Value | Description |
---|---|---|
Equals | 0 | The values are compared for equality. Value = 0. |
NotEquals | 1 | The two values are not equal. Value = 1. |
In | 2 | The value exists in a list of values. Value = 2. |
NotIn | 3 | The given value is not matched to a value in a list. Value = 3. |
GreaterThan | 4 | The value is greater than the compared value. Value = 4. |
LessThan | 5 | The value is less than the compared value. Value = 5. |