1

使用以下代码:

        QuerySpec qs = new QuerySpec(WTPart.class);
        qs.appendWhere(new SearchCondition(WTPart.class, WTPart.CREATOR_NAME, SearchCondition.EQUAL, name));

出现错误

属性“creator.name”不是类“wt.part.WTPart”的属性

我也想知道如何按修饰符名称查询部分

谢谢。

4

1 回答 1

1

如果要查询修饰符名称

long userId=userName.getPersistInfo().getObjectIdentifier().getId();
QuerySpec qs = new QuerySpec(WTPart.class);
qs.appendWhere(new SearchCondition(WTPart.class,"iterationInfo.modifier.key.id",SearchCondition.EQUAL,userId), new int[] { 0, 1 });

我不确定对创建者姓名的查询,我会检查并更新这个

于 2014-05-22T05:04:51.723 回答