Click or drag to resize

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.LibraryManager
Assembly:  FileHold.LibraryManager (in FileHold.LibraryManager.dll) Version: 17.0.0.0
Syntax
C#
public enum Operator
Members
  Member nameValueDescription
Equal0 Value is equal to the operand of any type.
Between1 Value is between two numbers or dates.
Greater2 Value is greater than given number or date.
GreaterOrEqual3 Value is greater than or equal to given number or date.
Smaller4 Value is less than given number or date.
SmallerOrEqual5 Value is less than or equal to given number or date.
InList6 Value is equal to one of the specified operands of any type.
IsBlank7 Value is empty.
Contains8 Value contains the given text (for Full Text Search).
Below9 Value is equal to or below the given drill down item.
Before10 Date is earlier than current date plus N days (use negative value for past dates).
After11 Date is later than current date plus N days (use negative value for past dates).
Mod12 Internal. Do not use.
BeforeOrToday13 Internal. Do not use.
NotEqual14 Value is NOT equal to operand of any type.
NotInList15 Value is NOT equal to any of specified operands of any type.
NotContains16 Value NOT contains the given text (for Full Text Search).
ContainsInDB17 Value contains the given text (for DB wildcard search).
NotContainsInDB18 Value does NOT contain the given text (for DB wildcard search).
See Also