Operator Enumeration
List of all operands.
Operator decides (in addition to searchType) how many operands are required for the search condition.
All operators except Between and InList require 1 operand.
Between requires 2 operands, InList requires >0 operands.
S-OP-110
Namespace: FileHold.LibraryManagerAssembly: FileHold.LibraryManager (in FileHold.LibraryManager.dll) Version: 17.1.0.0
Equal | 0 |
Value is equal to the operand of any type.
|
Between | 1 |
Value is between two numbers or dates.
|
Greater | 2 |
Value is greater than given number or date.
|
GreaterOrEqual | 3 |
Value is greater than or equal to given number or date.
|
Smaller | 4 |
Value is less than given number or date.
|
SmallerOrEqual | 5 |
Value is less than or equal to given number or date.
|
InList | 6 |
Value is equal to one of the specified operands of any type.
|
IsBlank | 7 |
Value is empty.
|
Contains | 8 |
Value contains the given text (for Full Text Search).
|
Below | 9 |
Value is equal to or below the given drill down item.
|
Before | 10 |
Date is earlier than current date plus N days (use negative value for past dates).
|
After | 11 |
Date is later than current date plus N days (use negative value for past dates).
|
Mod | 12 |
Internal. Do not use.
|
BeforeOrToday | 13 |
Internal. Do not use.
|
NotEqual | 14 |
Value is NOT equal to operand of any type.
|
NotInList | 15 |
Value is NOT equal to any of specified operands of any type.
|
NotContains | 16 |
Value NOT contains the given text (for Full Text Search).
|
ContainsInDB | 17 |
Value contains the given text (for DB wildcard search).
|
NotContainsInDB | 18 |
Value does NOT contain the given text (for DB wildcard search).
|