我正在尝试建模Person
s的网络。 Person
可以包含多个Favorites
。这些最爱是固定不断扩展的。
static hasMany = [favorites : Favorite];
现在我想拥有Favorite
域类的子项。在Favorite
我有belongsTo
映射:
static belongsTo = [person : Person];
现在在我的孩子班上:
class ColorFavorite extends Favorite
{
String color;
}
这是可能的还是我想远远超出GORM?实现这样的东西的正确方法是什么?
答案 0 :(得分:1)