我有以下代码:
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) = true
或publicRead = 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);