MetadataConditionOperator Enum

Definition

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

Equals 0

The values are compared for equality. Value = 0.

GreaterThan 4

The value is greater than the compared value. Value = 4.

In 2

The value exists in a list of values. Value = 2.

LessThan 5

The value is less than the compared value. Value = 5.

NotEquals 1

The two values are not equal. Value = 1.

NotIn 3

The given value is not matched to a value in a list. Value = 3.

Applies to