实体框架:将 FK 更改为“删除级联”后无法编译
我有一个包含 2 列的查找表,每列都是一个 FK。假设这些列是 CustomerID 和 ProductID。一切都很好,直到我将这些 FK 更改为在 Cascade 上都具有“删除规则”和“更新规则”。不,我无法构建该项目。有什么解决办法吗?
I have a lookup table with 2 columns, each column is a FK. Let's say those columns are CustomerID and ProductID. Everything was ok until I changed those FKs to have the "delete rule" and "update rule" on both to Cascade. No I cannot build the project. Any solutions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您更改了 SQL Server 中的规则,则必须从数据库更新模型。
如果您手动更改了 .edmx 文件中的规则,请首先确保您仍然拥有格式良好的 xml,然后重新生成 DDL 并重新部署数据库。
If you changed the rule in SQL Server, you have to update your model from database.
If you changed the rule in the .edmx file manually, first make sure that you still have well-formed xml and then re-generate the DDL and redeploy the database.