5

我正在使用 EF 4.1 开始一个新项目,首先是数据库。如果我使用 Visual Studio 生成 edmx,那么一切都很好;但是,当数据库发生更改而没有删除和重新添加它时,我似乎无法找到刷新 edmx 的方法。

在之前的项目中(使用 EF 3.x?),我们有执行此操作的脚本 - edmgen 来创建 csdl、msl 和 ssdl,然后edmgen2来创建 edmx 和 Designer.cs 文件。

我还需要使用 edmgen2 来创建 edmx 文件吗?或者 edmgen 的 VS2010 版本有没有办法做到这一点?

4

2 回答 2

2

我在这里创建了一个功能请求:http:
//data.uservoice.com/forums/72025-entity-framework-feature-suggestions/suggestions/3022790-edmgen-exe-should-support-generating-an-edmx-file-

这里也有类似的讨论:http:
//social.msdn.microsoft.com/Forums/sa/adodotnetentityframework/thread/a98cddf4-5975-4c20-b88d-d308ed7fa45f

http://social.msdn.microsoft.com/Forums/en/adonetefx/thread/d93cde02-7534-489c-a1bd-72f45ce404be

这里有一篇博文:
http ://weblogs.asp.net/manavi/archive/2011/05/17/associations-in-ef-4-1-code-first-part-6-many-valued-associations .aspx
(提示:搜索“获取运行时 EDM”)

最后两个链接提供了答案:

protected override void OnModelCreating(ModelBuilder modelBuilder)
{
  // Additional configuration

  var provider = new DbProviderInfo("System.Data.SqlClient", "2008");
  var model = modelBuilder.Build(provider);
  model.WriteEdmx(provider, new XmlTextWriter(@"C:\temp\my.edmx", Encoding.ASCII));
}
于 2012-07-24T02:16:52.120 回答
1

Right mouse click in the edmx designer and choose update model from database you will get a popup where you can choose what objects needs updating

于 2012-02-15T18:57:04.323 回答