Details
-
Improvement
-
Status: Closed
-
Minor
-
Resolution: Fixed
-
4.0-beta1
-
None
-
None
Description
Currently, one-arg operators must be used like
Criteria.and/or/where(operand, null, Criteria.ISNULL/Criteria.ISNOTNULL).
It currently is no compile error to write
Criteria.and/or/where(operand, Criteria.ISNULL/Criteria.ISNOTNULL)
but this is interpreted as operand = ISNULL/ISNOTNULL
which is not what the user intended.
The above expression should instead be interpreted as operand ISNULL/ISNOTNULL.