Enum QueryConditionOperatorType
Specifies the relation type of a QueryCondition between its attribute and its value.
Namespace: TileDB.CSharp
Assembly: TileDB.CSharp.dll
Syntax
public enum QueryConditionOperatorType : uint
Fields
Name | Description |
---|---|
Equal | The attribute is equal to the value. |
GreaterThan | The attribute is greater than the value. |
GreaterThanOrEqual | The attribute is greater than or equal to the value. |
LessThan | The attribute is less than the value. |
LessThanOrEqual | The attribute is less than or equal to the value. |
NotEqual | The attribute is not equal to the value. |