我有以下代码:

EntityIterable iterable = null;
                    if(authId== null) {
                        iterable = txn.find(entityType, "publicRead", true).skip(skip).take(limit);
                    } else {
                        iterable = txn.getAll(entityType)
                                .union(txn.find(entityType, "read(" + authId+ ")", true))
                                .union(txn.find(entityType, "publicRead", false))
                                .union(txn.find(entityType, "publicRead" ,true)).skip(skip).take(limit);
                    }
}


我试图根据这种逻辑找到一种方法来获得结果:


如果publicRead为true,则返回所有具有该属性的实体
设置为true(琐事)


问题是这样的:


如果存在authId,则使用publicRead = false && read(userIdauthIdRoleId) = truepublicRead = true && read(authId) = true检索所有实体


Xodus API如何实现?

最佳答案

这可以通过以下方式实现:

EntityIterable publicRead = txn.find(entityType, "publicRead", true);

EntityIterable result;

if (authId == null) {
    result = publicRead;
} else {
    result =
        txn.getAll(entityType).minus(publicRead).intersect(txn.find(entityType, "read(userIdauthIdRoleId)", true))
        .union(publicRead.intersect(txn.find(entityType, "read(" + authId + ")", true)));
}

result = result.skip(skip).take(limit);

09-26 03:20