在数据库上配置实体框架未定义的外键关系
由于多种原因,我正在使用的数据库(SQL Server 2005)没有定义任何关系。 每个表都有一个主键。 大多数表至少有一个外键,但我们从未配置过约束。
谁能告诉我应该采取哪些步骤来通知实体框架表之间的底层关系? 有没有具体的文档描述这个过程?
For a variety of reasons the database that I'm working on (SQL Server 2005) doesn't have any relationships defined. Every table has a primary key. And most tables have at least one foreign key, however we've never configured the constraints.
Can anyone tell me the steps that I should take to inform Entity Framework of the underlying relationships between tables? Is there a particular document that describes this process?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要手动创建 EF 模型中表之间的关联。
在实体框架设计器界面中,您基本上可以右键单击表格,然后从上下文菜单中选择“添加 -> 关联”选项。 在弹出的对话框中,您可以在两个表之间建立关联 - 即使基础数据库中没有外键关系。
马克
You will need to manually create the associations between the tables in your EF model.
In the Entity Framework designer surface, you basically right-click on your table and from the context menu, you need to choose the "Add -> Association" option. In the dialog box that pops up, you can establish the association between your two tables - even without foreign key relationship in the underlying database.
Marc