4

我需要验证一些条件来创建完整的查询:

QueryBuilder qb = getMyObjDao().queryBuilder();

如果(某些条件)

 qb.where(MyObjDao.Properties.Prop1.eq(someValue)); 

否则
qb.whereOr(MyObjDao.Properties.Prop2.eq(someValue),MyObjDao.Properties.Prop2.eq(someValue));

if ( someOtherCondition )

 qb.where(MyObjDao.Properties.Prop3.eq(someValue)); 

别的

 qb.whereOr(MyObjDao.Properties.Prop4.eq(someValue));

那么是否可以连接查询构建器条件并动态创建查询构建器?或任何东西:

(a = '%'+condition1 or a = '%'+condition1+'%' or a = condition1 + '%') and
|(b = '%'+condition2 or b = '%'+condition2+'%' or b = 条件 2 + '%') 和 ....

如何在greenDao中做到这一点?

4

1 回答 1

6

QueryBuilder.and()QueryBuilder.or()用于组合WhereConditions。生成WhereCondition的 s 必须在内部使用QueryBuilder.where()(这将结合使用 的条件AND)或QueryBuilder.whereOr().


请注意,您的所有查询都没有多大意义。因此,我给您的代码可能无法按您的预期工作,因为我只是在猜测您的预期。例如,你可以采取qb.whereOr(MyObjDao.Properties.Prop2.eq(someValue),MyObjDao.Properties.Prop2.eq(someValue))

这转换为where (Prop2 = someValue OR Prop2 = someValue)或可能转换为where (Prop2 = 'someValue' OR Prop2 = 'someValue')。在它们中的每一个中,OR 和第二个语句都已过时。

另一个例子是,(a = '%'+condition1 or a = '%'+condition1+'%' or a = condition1 + '%') and (b = '%'+condition2 or b = '%'+condition2+'%' or b = condition2 + '%') and .... 如果您不搜索其中包含的字符串%,则带有类似 where 子句的查询将返回无或错误结果。


为了:

(a = '%'+condition1 or a = '%'+condition1+'%' or a = condition1 + '%') and
(b = '%'+condition2 or b = '%'+condition2+'%' or b = condition2 + '%') and ....

你可以使用这样的东西:

ArrayList<WhereCondition> and = new ArrayList<WhereCondition>();

if (condition1 != null) {
    and.add(queryBuilder.or(
            YourDao.Properties.a.eq("%"+condition1),
            YourDao.Properties.a.eq("%"+condition1+"%"),
            YourDao.Properties.a.eq(condition1+"%")));
}

if (condition2 != null) {
    and.add(queryBuilder.or(
            YourDao.Properties.a.eq("%"+condition2),
            YourDao.Properties.a.eq("%"+condition2+"%"),
            YourDao.Properties.a.eq(condition2+"%")));
}

...

if (and.size() == 1) {
    queryBuilder.where(and.get(0));
} else if (and.size() > 1) {
    WhereCondition first = and.remove(0);
    queryBuilder.where(first, and.toArray(new WhereCondition[and.size()]));
}

更新

当然,您也可以使用另一种没有动态列表的方法:

为了:

QueryBuilder qb = getMyObjDao().queryBuilder();

if ( someCondition )

 qb.where(MyObjDao.Properties.Prop1.eq(someValue)); 

else
qb.whereOr(MyObjDao.Properties.Prop2.eq(someValue),MyObjDao.Properties.Prop2.eq(someValue));

if ( someOtherCondition )

 qb.where(MyObjDao.Properties.Prop3.eq(someValue)); 

else

 qb.whereOr(MyObjDao.Properties.Prop4.eq(someValue));

你可以使用这个:

QueryBuilder<MyObj> queryBuilder = getMyObjDao().queryBuilder();
WhereCondition where = null;

if (someCondition1) {
    WhereCondition cond = MyObjDao.Properties.Prop1.eq(someValue);
    if (where == null) {
        where = cond;
    } else {
        where = queryBuilder.and(where, cond);
    }
} else {
    WhereCondition cond = queryBuilder.or(
            MyObjDao.Properties.Prop2.eq(someValue),
            MyObjDao.Properties.Prop2.eq(someOtherValue));
    if (where == null) {
        where = cond;
    } else {
        where = queryBuilder.and(where, cond);
    }
}

if (someOtherCondition) {
    WhereCondition cond = MyObjDao.Properties.Prop3.eq(someValue);
    if (where == null) {
        where = cond;
    } else {
        where = queryBuilder.and(where, cond);
    }
} else {
    WhereCondition cond = MyObjDao.Properties.Prop4.eq(someValue);
    if (where == null) {
        where = cond;
    } else {
        where = queryBuilder.or(where, cond2);
    }
}

List<YourObj> result = queryBuilder.where(where).list();

如您所见,有很多可能如何在运行时使用 greendao 组合 WhereConditions。但是只要你不给出你真正想做的事情的详细例子和描述,没有人可以帮助你。

顺便一提:

  • 如果您只使用一个 WhereCondition,则使用where()orwhereOr()没有任何区别。
  • 您可能想查询:(a like '%'+condition1 or a like '%'+condition1+'%' or a like condition1 + '%')而不是(a = '%'+condition1 or a = '%'+condition1+'%' or a = condition1 + '%').
  • 请注意,这(a like '%'+condition1 or a like '%'+condition1+'%' or a like condition1 + '%')等于(a like '%'+condition1+'%')因为每个匹配a like '%'+condition1a like condition1+'%'还将匹配的结果a like '%'+condition1+'%'
于 2013-10-28T06:19:40.463 回答