如何在visual studio 2012中启用视图的编译时错误检查(使用entityframework的MVC应用程序) 我试过这个
<MvcBuildViews> true </MvcBuildViews>
错误是: Error77无法加载类型'System.Data.Entity.Design.AspNet.EntityDesignerBuildProvider'。
答案 0 :(得分:1)
看起来您没有引用System.Data.Entity.Design
。尝试找到here
添加
<add assembly="System.Data.Entity.Design, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089" />
在您的web.config文件中