gpt4 book ai didi

grails - 域类如何将 'all-delete-orphan'级联到它没有引用的子级?

转载 作者:行者123 更新时间:2023-12-02 15:14:37 24 4
gpt4 key购买 nike

在Grails中,您可以有一个子类:

class Child {
Father father
static belongsTo = [Father, Mother]
}

有两个家长类
class Mother{
}

class Father {
}

看来,如果我使用 father.delete(),那么Grails会引发数据库错误,指出 Father仍然存在,因此无法删除 child

如果all-delete-orphan类没有直接引用Child类,如何将FatherChild层叠?

最佳答案

使用hasMany使其双向。

class Mother{
static hasMany = Child
}
class Father{
static hasMany = Child
}

这样做应该可以进行级联工作,以便在删除其中一个 parent 时, child 也将被删除。

关于grails - 域类如何将 'all-delete-orphan'级联到它没有引用的子级?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5917178/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com