andConditionWhere method

SqlWhereBuilder andConditionWhere(
  1. String where
)

自定义条件

Implementation

SqlWhereBuilder andConditionWhere(String where) {
  if (where.isEmpty) {
    return this;
  }
  _where.write(" and $where");
  return this;
}