Enum SQLOperator
Defines the list of possible SQL operators.
Namespace: LemonEdge.Utils.Database
Assembly: Utils.dll
Syntax
public enum SQLOperator : short
Remarks
Maps directly to telerik filter operators
Fields
| Name | Description |
|---|---|
| Contains | xxx Like '%yyy%' |
| DoesNotContain | not(xxx Like '%yyy%') |
| EndsWith | xxx Like '%yyy' |
| Equals | == |
| GreaterThan | |
| GreaterThanOrEqualTo |
|
| IsContainedIn | is in ([]) |
| IsEmpty | == null |
| IsNotContainedIn | is not in ([]) |
| IsNotEmpty | != null |
| IsNotNull | != null |
| IsNull | == null |
| LessThan | $lt; |
| LessThanOrEqualsTo | <= |
| NotEquals | != |
| StartsWith | xxx Like 'yyy%' |