The type of comparison this parameter should use
Some database providers may not support all Operands.
| Member Name | Description |
|---|---|
| Equal | Equal Comparison |
| NotEqual | Not Equal Comparison |
| GreaterThan | Greater Than Comparison |
| GreaterThanOrEqual | Greater Than or Equal Comparison |
| LessThan | Less Than Comparison |
| LessThanOrEqual | Less Than or Equal Comparison |
| Like | Like Comparison, "%s%" does it have an 's' in it? "s%" does it begin with 's'? |
| IsNull | Is the value null in the database |
| IsNotNull | Is the value non-null in the database |
| Between | Is the value between two parameters? see BetweenBeginValue and BetweenEndValue. Note that Between can be for other data types than just dates. |
| In | Is the value in a list, ie, "4,5,6,7,8" |
| NotIn | NOT in a list, ie not in, "4,5,6,7,8" |
| NotLike | Not Like Comparison, "%s%", anything that does not it have an 's' in it. |
Namespace: NCI.EasyObjects
Assembly: NCI.EasyObjects (in NCI.EasyObjects.dll)