The operator to use to compare a column to a piece of data.
| Member Name | Description |
|---|---|
| Exact | '=' |
| Not | '<>' |
| Partial | '%' + data + '%' |
| StartsWith | data + '%' |
| EndsWith | '%' + data |
| Greater | '>' |
| Lesser | '<' |
| IsNull | is null |
| IsNotNull | is not null |
| In | in ( (string|int)data[] ) |
| GreaterOrEqual | '>=' |
| LesserOrEqual | '<=' |
| Like | like |
| NotIn | not in ( (string|int)data[] ) |
| NotLike | not like |
Namespace: OrmLib
Assembly: OrmLib (in OrmLib.dll)