Click or drag to resize
XWhereOperationEnum Enumeration
Enum OperationEnum

Namespace:  Biolomics.SharedClasses
Assembly:  Biolomics.SharedClasses (in Biolomics.SharedClasses.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public enum OperationEnum
Members
  Member nameValueDescription
Empty0 Return an empty data set, using "Id = 0.5" or "1 = 0.5"
All1 >Return the whole data set, in fact without any where clause
Sql2 Apply the WHERE clause stored in m_Value blindly. Valid for MySql database only
Eq11 Equal
Ne12
StartWith131 String Start with
Contains132 String contains
EndWith133 String ends with
IsNull14 IS NULL
IsNotNull15 IS NOT NULL
In_16 IN()
RegExp17 REGEXP, value is always a string
InRange18 same as IN() but the Value contains an array with pairs of integers (first, last)
Gt20 Greater >
Gte21 Greater or Equal >=
Lt22 Less than
Lte23 Less than or Equal
Mod_24 Modulo, to retrieve dates when only the year, or the month, or the day is given.
And_30 And
Or_31 OR
Not_32 NOT
AndIsNull41 Test if (x AND y) = 0
AndIsNotNull42
See Also