Compare operators for Search conditions
Namespace: Wiker.WIDatabaseAssembly:
Syntax
C# |
---|
public enum eOperator |
Visual Basic |
---|
Public Enumeration eOperator |
Visual C++ |
---|
public enum class eOperator |
Members
Member name | Value | Description | |
---|---|---|---|
None | 0 | Not set | |
Equal | 1 | Equal to | |
NotEqual | 2 | Not equal to | |
Greater | 3 | Greater than | |
Lesser | 4 | Less than | |
GreaterEqual | 5 | Greater than or equal to | |
LesserEqual | 6 | Less than or equal to | |
Contains | 7 | Pattern search match anywhere (%LIKE%) | |
BeginsWith | 8 | Pattern search beginning of word (LIKE%) | |
EndsWith | 9 | Pattern search end of word (%LIKE) | |
NotContains | 10 | Pattern search does NOT contain anywhere (NOT %LIKE%) | |
NotEndsWith | 11 | Pattern search NOT end of word (NOT %LIKE) | |
NotBeginsWith | 12 | Pattern search NOT beginning of word (NOT LIKE%) | |
BitWiseAND | 13 | Bitwise AND | |
BitWiseOR | 14 | Bitwise OR | |
IsNull | 15 | Data is null | |
IsNotNull | 16 | Data is not null |