作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
上面两个选项有什么区别?什么时候选择每个选项更合适?
最佳答案
它们之间的基本区别是:
When using the orphanRemoval=true option Doctrine makes the assumption that the entities are privately owned and will NOT be reused by other entities. If you neglect this assumption your entities will get deleted by Doctrine even if you assigned the orphaned entity to another one.
假设您的用户
与评论
具有一对多关系。如果您使用 cascade="remove"
,您可以从一个用户
中删除对评论
的引用>,然后将该评论
附加到另一个用户
。当您坚持它们时,它们将被正确保存。但如果您使用 orphanRemoval=true
,即使您将从一个用户
中删除给定的评论
,然后附加到另一个用户
,该评论将在持久期间被删除,因为引用已被删除。
关于symfony - Doctrine :级联 ="remove"与 orphanRemoval=true,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25515007/
我是一名优秀的程序员,十分优秀!