We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fedf906 commit efbe874Copy full SHA for efbe874
src/main/java/org/javawebstack/orm/query/Query.java
@@ -164,6 +164,14 @@ public Query<T> notNull(Object left) {
164
where.notNull(left);
165
return this;
166
}
167
+
168
+ public Query<T> whereNull(Object left) {
169
+ return where.isNull(left);
170
+ }
171
172
+ public Query<T> whereNotNull(Object left) {
173
+ return where.notNull(left);
174
175
176
public Query<T> lessThan(Object left, Object right) {
177
where.lessThan(left, right);
0 commit comments