Defines an operator to be used in queries/filters.
Namespace: BlueCieloECM.InnoCielo.Meridian.ServerAssembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)
Syntax
C# |
---|
public enum OperatorKind |
Visual Basic |
---|
Public Enumeration OperatorKind |
Visual C++ |
---|
public enum class OperatorKind |
Members
Member name | Value | Description | |
---|---|---|---|
OP_EQUALS | 1 | Equality. | |
OP_LESS | 2 | Less than. | |
OP_MORE | 3 | More than. | |
OP_LESS_EQUAL | 4 | Less than or equal. | |
OP_MORE_EQUAL | 5 | More than or equal. | |
OP_NOT_EQUAL | 6 | Not equal. | |
OP_LIKE | 7 | Like. | |
OP_NOT_LIKE | 8 | Not like. | |
OP_EMPTY | 9 | Empty. | |
OP_NOT_EMPTY | 10 | Not empty. | |
OP_CONTAINS | 11 | Contains. | |
OP_NOT_CONTAINS | 12 | Not contains. | |
OP_STARTSWITH | 13 | Starts with. | |
OP_NOT_STARTSWITH | 14 | Not starts with. | |
OP_DOSWILDCARD | 15 | DOS-style wildcard. | |
OP_DATE_EQUALS | 18 | Date equals. | |
OP_DATE_NOT_EQUAL | 19 | Date not equal. |
Remarks
This enumeration overrides AMOPERATOR defined in BlueCieloECM.AMOm PIA.