whereNotNull method
IS NOT NULL clause
Implementation
QueryBuilder<T> whereNotNull(String column) {
_wheres.add('${_formatColumn(column)} IS NOT NULL');
return this;
}
IS NOT NULL clause
QueryBuilder<T> whereNotNull(String column) {
_wheres.add('${_formatColumn(column)} IS NOT NULL');
return this;
}