WhereCollector 是什么?
- 它收集 WhereCondition
- 将收集的 WhereCondition 用 and 的方式加入 StringBuilder
- 提供便捷的方法结合多个条件为一个。
**1. 收集 WhereCondition **
将wherecondition
添加到 List<WhereCondition> whereConditions;
中
**2. 将 WhereCondition 用 and 的方式加入 StringBuilder中 **
appendTo:
appendValues:
WhereCondition
3. 集合多个条件
谁在使用它? QueryBuilder
-
将多个条件以 and关系 加入 whereCollector
-
将多个条件以 or关系 加入 whereCollector
-
以or的关系创建WhereCondition:
-
以and的关系创建WhereCondition: