andConditionWhere method
自定义条件
Implementation
SqlWhereBuilder andConditionWhere(String where) {
if (where.isEmpty) {
return this;
}
_where.write(" and $where");
return this;
}
自定义条件
SqlWhereBuilder andConditionWhere(String where) {
if (where.isEmpty) {
return this;
}
_where.write(" and $where");
return this;
}