RelationColumnInfo.ConditionOperator Property
In This Article
Specifies the condition applied to the current column.
Namespace: DevExpress.DataAccess.Sql
Assembly: DevExpress.DataAccess.v24.2.dll
NuGet Package: DevExpress.DataAccess
#Declaration
[DefaultValue(ConditionType.Equal)]
public ConditionType ConditionOperator { get; set; }
#Property Value
Type | Default | Description |
---|---|---|
Condition |
Equal | A Condition |
Available values:
Name | Description |
---|---|
Equal | Specifies the “equal” relational operator. |
Not |
Specifies the “not equal” relational operator. |
Greater | Specifies the “greater than” relational operator. |
Greater |
Specifies the “greater than or equal to” relational operator. |
Less | Specifies the “less than” relational operator. |
Less |
Specifies the “less than or equal to” relational operator. |
See Also