ASP.NET MVC4 & Entity Framework 6.0 IIS 部署出错解决方案

近期了解MVC4的时候弄了1个简单的小工程,使用Entity Framework作为Model,F5启动调试运行的时候没有问题,但是发布到IIS以后访问就报错

毛病信息以下:

The Entity Framework provider type 'System.Data.Entity.sqlServer.sqlProviderServices,EntityFramework.sqlServer' registered in the application config file for the ADO.NET provider with invariant name 'System.Data.sqlClient' Could not be loaded. Make sure that the assembly-qualified name is used and that the assembly is available to the running application.

很奇怪,搜索了1下,找到1个老外的帖子,戳这里

解决方案以下:

在EF的上下文代码CS文件(Model1.Context.cs)中添加这个方法

public void FixEfProviderServicesProblem() { //The Entity Framework provider type 'System.Data.Entity.sqlServer.sqlProviderServices,EntityFramework.sqlServer' //for the 'System.Data.sqlClient' ADO.NET provider Could not be loaded. //Make sure the provider assembly is available to the running application. //See http://go.microsoft.com/fwlink/?LinkId=260882 for more information. var instance = System.Data.Entity.sqlServer.sqlProviderServices.Instance; }

不明所以,具体缘由还是不清楚,这个方法也历来未被调用过,但是。。。好用了!

解决方案还需要后续进行观测,毕竟修改的是根据数据库生成文件

还有1种方案我没有尝试,可以强迫部署EntityFramework.sqlServer.dll这个文件输出目录,有兴趣的可以尝试。

相关文章

统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...
前言 之前做了微信登录,所以总结一下微信授权登录并获取用户...
FastAdmin是我第一个接触的后台管理系统框架。FastAdmin是一...
之前公司需要一个内部的通讯软件,就叫我做一个。通讯软件嘛...
统一支付是JSAPI/NATIVE/APP各种支付场景下生成支付订单,返...