Enum InsertUpdateDeleteArgsSelector.OperationType
The types of operations this WHERE clause supports.
Namespace: Quantellia.WMServer.Asset.DataSource
Assembly: WMServer.dll
Syntax
[JsonConverter(typeof(StringEnumConverter))]
public enum InsertUpdateDeleteArgsSelector.OperationType
Fields
| Name | Description |
|---|---|
| And | Test if both operands are true. Requires both to be boolean values. |
| Equal | equality, operands must be columns or parameters |
| GreaterThan | operands must be numeric comparable values. |
| GreaterThanOrEqual | operands must be numeric comparable values. |
| In | Test if the first operand is contained in the second. This would be used when the second operand represents a table, or array. |
| LessThan | operands must be numeric comparable values. |
| LessThanOrEqual | operands must be numeric comparable values. |
| Like | Equality with additional pattern support. |
| NotEqual | inequality, operands must be columns or parameters |
| NotIn | Test if the first operand is not contained in the second. This would be used when the second operand represents a table, or array. |
| NotNull | Test if the first operand is not null. The second operand is ignored. |
| Null | Test if the first operand is null. The second operand is ignored. |
| Or | Test if either operand is true. Requires both to be boolean values. |