def _m = Module.find(name:'studyLevelPerson'), _pid='76f198cf-9a26-49ec-82ed-f52d4b772875' def closure = {m, pid, t, q-> if(m.belongsTo) { // sop is the parent object of objects shared by all def sop = Module.find(name:m.belongsTo).clazz.find(id:'00000000-0000-0000-0000-000000000000',all:true) q.descend(m.belongsTo).descend('id').constrain(pid).or( q.descend(m.belongsTo).constrain(sop) ) } }.curry(_m, _pid, null) Person.findAll(closure)
def _m = Module.find(name:'studyLevelPerson'), _pid='76f198cf-9a26-49ec-82ed-f52d4b772875' def closure = {m, pid, t, q-> if(m.belongsTo) { // sop is the parent object of objects shared by all def sop = Module.find(name:m.belongsTo).clazz.find(id:'00000000-0000-0000-0000-000000000000',all:true) q.descend(m.belongsTo).constrain(sop).or( q.descend(m.belongsTo).descend('id').constrain(pid) ) } }.curry(_m, _pid, null) Person.findAll(closure)
查询只涉及两个条件(条件1:parent object 的id为'76f198cf-9a26-49ec-82ed-f52d4b772875'
; 条件2:parent object为sop
) ,而这两段代码执行的结果竟然截然不同!后者的结果才是预期的结果(为空集合,因为数据库中不存在满足“条件1 OR 条件2”的数据),前者似乎是把两个条件都弄掉了,于是返回数据库中该类的所有实例。
两者外在的区别在于两个条件体位不同,查询路径一个由深入浅,一个由浅入深。看来得注意体位,要由浅入深。