compileWhereSql method

String compileWhereSql()

Implementation

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