ADO.NET EF 复合主键 - 无法更新外键

发布于 2024-09-19 14:08:26 字数 275 浏览 3 评论 0原文

我有以下实体: alt text

在我的代码中,我需要更新实体 BudgetPost 中的 FKCategoryID代码> 但我收到以下错误:

FKCategoryID 是对象的一部分 关键信息

在这种情况下有什么方法可以更新密钥还是不可能?

提前致谢

I have following entities:
alt text

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

幸福%小乖 2024-09-26 14:08:59

为什么它是复合键的一部分?只要 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文