美文网首页
greendao源码分析:WhereCollector

greendao源码分析:WhereCollector

作者: linheimx | 来源:发表于2016-11-30 15:41 被阅读80次

    WhereCollector 是什么?

    1. 它收集 WhereCondition
    2. 将收集的 WhereCondition 用 and 的方式加入 StringBuilder
    3. 提供便捷的方法结合多个条件为一个。

    **1. 收集 WhereCondition **
    wherecondition添加到 List<WhereCondition> whereConditions;

    **2. 将 WhereCondition 用 and 的方式加入 StringBuilder中 **


    appendTo:


    appendValues:


    WhereCondition

    3. 集合多个条件

    谁在使用它? QueryBuilder

    • 将多个条件以 and关系 加入 whereCollector


    • 将多个条件以 or关系 加入 whereCollector


    • 以or的关系创建WhereCondition:


    • 以and的关系创建WhereCondition:


    相关文章

      网友评论

          本文标题:greendao源码分析:WhereCollector

          本文链接:https://www.haomeiwen.com/subject/kodtmttx.html