核心数据:删除一个实体是否会删除其他实体与其的所有关系?
假设我有两个实体:MySubscription 和 AllSubscription,MySubscription 与 AllSubscription 具有一对一的关系,因此 AllSubscription 与 MySubscription 具有反向关系,比如说:
MySub AllSubs
a <---> A
B
c <---> C
D
e <---> E
如果我删除 a,Core Data 是否会自动将 A.mysub 设置为 nil?
Say if I have two entities: MySubscription and AllSubscription, MySubscription has a one to one relationship to AllSubscription, thus AllSubscription has a inverse relationship to MySubscription, say:
MySub AllSubs
a <---> A
B
c <---> C
D
e <---> E
if I delete a, does Core Data automatically set A.mysub to nil?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一切都取决于您选择的删除规则,可以为每个关系指定该规则。您所描述的规则称为“无效”。
All depends on your choice of delete rule, which can be specified for each relationship. The rule you are describing is called "nullify".