| ExpInnerOperator Enumeration |
FilterExpression inner operators
Namespace:
Omada.OE.Model.Public
Assembly:
Omada.OE.Model (in Omada.OE.Model.dll) Version: 15.0.0.0
Syntaxpublic enum ExpInnerOperator
Members
| Member name | Value | Description |
---|
| Equals | 0 | |
| LessThan | 1 | |
| GtThan | 2 | |
| LessThanEq | 3 | |
| GtThanEq | 4 | |
| NotEquals | 5 | |
| Like | 6 |
"Like" is only valid when the left-side is a Text property or fixed field w. data type 'string'.
"Like" is in most cases interpreted as "Contains" - meaning that both left- and right-wildcards are applied.
|
| In | 7 |
"In" is only valid when the left-side is a Set- or -Reference property or a id-referencing fixed field.
|
| NotIn | 8 |
"NotIn" is only valid when the left-side is a Set- or -Reference property or a id-referencing fixed field.
|
See Also