whereNull method
Adds a WHERE column IS NULL clause.
Implementation
QueryBuilder whereNull(String column) {
final prefix = _wheres.isEmpty ? '' : 'AND ';
_wheres.add('$prefix${_quoteIdentifier(column)} IS NULL');
return this;
}
Adds a WHERE column IS NULL clause.
QueryBuilder whereNull(String column) {
final prefix = _wheres.isEmpty ? '' : 'AND ';
_wheres.add('$prefix${_quoteIdentifier(column)} IS NULL');
return this;
}