0

我是 EF CodeFirst 的新手,正在尝试建立实体之间的关系。

我有三个表,它们的关系如下:

在此处输入图像描述

当我传递 UserID 时,我应该获得该用户所属组织的所有提供者详细信息。

如何在 CodeFirst(fluent API) 方法中为此场景构建实体及其关系?我在现有数据库上使用 EF CodeFirst。所以这三个表已经存在于数据库中。

任何输入或指针将不胜感激。谢谢!

4

2 回答 2

0

Use EF Power Tools. It has Reverse Engineer option that will create a model for an exisiting database. If you want to configure your model with fluent API instead of attributes you can use the above to get you to a starting point where you would manually convert whatever needs to be converted.

于 2012-11-13T00:12:03.397 回答
0

查看MSDN 上的这篇文章,它解释了 EF 期望在数据库上定义各种关系的约定。我认为阅读这篇文章将回答您的任何问题。

于 2012-11-12T21:24:40.257 回答