仅通过级联添加新对象?
我想知道在使用父子关系时是否可以仅将新的子对象添加到数据库中。也就是说,当您添加父级时,级联应该自动仅添加那些现在不在数据库中的(新)子级,即持久性的。您可以重写子级添加方法来检查此情况吗?或者是否有任何方便的解决方法?
I wonder wether it's possible to add only new Child-Objects into a database when using a Parent-Child relationship. That is, when you add a Parent, the cascade should automatically only add those (new) children which are not in the Database rigth now, i.e. persistent. Can you override a childrens add-method to check this condition or is there any conventient workaround for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须使用
事件
< /a> 用于添加对象。只需为追加事件或创建事件创建一个侦听器并跟踪您的数据。您可以根据该基础过滤日期。您可以使用类似的代码
You have to use
Events
for the adding object. Just create one listener for the append event or create event and track your data. You can filter the date on that bases.You can use the code like