在VS 2010中,更改< MvcBuildViews> true< / MvcBuildViews>在MVC2项目的.csproj
文件导致
错误,如果你使用Entity Framework。
Could not load type ‘System.Data.Entity.Design.AspNet.EntityDesignerBuildProvider’. C:\Windows\Microsoft.NET\Framework\v4.0.30319\Config\web.config 129
我想在调试时构建视图,我也希望我的项目编译!
您可以通过将以下元素
添加到您的web.config
文件来
解决此MVC编译问题:
<add assembly="System.Data.Entity.Design,Version=4.0.0.0,Culture=neutral,PublicKeyToken=b77a5c561934e089" />
这将告诉编译器在哪里找到缺少的类型。
原文链接:https://www.f2er.com/aspnet/254843.html