compileWhereSql method
Implementation
String compileWhereSql() {
if (_wheres.isEmpty) return '';
return 'WHERE ${_wheres.join(' AND ')}';
}
String compileWhereSql() {
if (_wheres.isEmpty) return '';
return 'WHERE ${_wheres.join(' AND ')}';
}