Closed sbosley closed 8 years ago
Add explicit negation methods for many of the standard criterions. E.g. in(...) now has a notIn(...) counterpart, like(...) has notLike(...), etc. Each of these criterions will also generate more readable SQL when negated. Refs #116.
in(...)
notIn(...)
like(...)
notLike(...)
LGTM
Add explicit negation methods for many of the standard criterions. E.g.
in(...)
now has anotIn(...)
counterpart,like(...)
hasnotLike(...)
, etc. Each of these criterions will also generate more readable SQL when negated. Refs #116.