whereNotNull method
Adds a WHERE column IS NOT NULL clause.
Implementation
ModelQuery<T> whereNotNull(String column) {
_builder.whereNotNull(column);
return this;
}
Adds a WHERE column IS NOT NULL clause.
ModelQuery<T> whereNotNull(String column) {
_builder.whereNotNull(column);
return this;
}