Skip to main content

RelationColumnInfo.ConditionOperator Property

Specifies the condition applied to the current column.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

[DefaultValue(ConditionType.Equal)]
public ConditionType ConditionOperator { get; set; }

Property Value

Type Default Description
ConditionType Equal

A ConditionType enumeration value.

Available values:

Name Description
Equal

Specifies the “equal” relational operator.

NotEqual

Specifies the “not equal” relational operator.

Greater

Specifies the “greater than” relational operator.

GreaterOrEqual

Specifies the “greater than or equal to” relational operator.

Less

Specifies the “less than” relational operator.

LessOrEqual

Specifies the “less than or equal to” relational operator.

See Also