ADO.NET EF 复合主键 - 无法更新外键
我有以下实体:
在我的代码中,我需要更新实体 BudgetPost
中的 FKCategoryID
代码> 但我收到以下错误:
FKCategoryID 是对象的一部分 关键信息
在这种情况下有什么方法可以更新密钥还是不可能?
提前致谢
I have following entities:
In my code I need to update the FKCategoryID
in entity BudgetPost
but I'm getting the following error:
FKCategoryID is part of the object's
key information
Is it any way to update the key in this case or it's not possible?
Thanks in advance
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么它是复合键的一部分?只要 FKBudgetID 是复合主键的一部分,您就无法修改它。如果要强制 FKCategoryID 和 FKBudgetID 组合的唯一性,请改用 UNIQUE 约束。
Why is it a part of the composite key? As long as FKBudgetID is a part of the composite primary key you won't be able to modify it. If you want to enforce uniqueness in the combination of FKCategoryID and FKBudgetID, use a UNIQUE constraint instead.