标签: hibernate grails groovy
我有以下域名模型:
class Location { String name static hasMany = [locations:Location, persons:Person] } class Person { String name }
所以基本上每个位置都可以容纳一群人+“子位置” 递归查询某个位置下的所有人(包括它的子位置及其子位置等)的最佳方法是什么?
答案 0 :(得分:0)
这似乎是一个类似的问题:
GRAILS: Find all children in a self-referenced one-to-many relationship