在IIS 8.5上部署项目时,无法使用EntityFramework 6创建数据库

问题描述

我有一个Visual Studio 2019项目,该项目使用ASP.NET和C#发布Web应用程序(Web API)。

我们使用EntityFramework 6 Code-First策略访问SQL Server数据库。

当我在本地或Azure Service上运行它时,一切都很好,但是当我将此Web应用程序部署到运行Windows Server 2012 R2的服务器中的IIS 8.5上时,由于某种原因,EntityFramework 6无法创建数据库

我们使用以下内容创建数据库:

Database.SetInitializer(new MigrateDatabaseToLatestVersion<MobileServiceContext,Migrations.Configuration>("MS_TableConnectionString"));

我们指向的是本地SQL Server 2014。

我们创建DbContext的子级来处理EntityFramework上下文,如下所示:

public class MobileServiceContext : DbContext
{
    public const string CONNECTION_STRING_KEY = "MS_TableConnectionString"; // "MS_TableConnectionString"; 
    public const string CONNECTION_STRING_NAME = "Name=" + CONNECTION_STRING_KEY; // "MS_TableConnectionString"; 

    public MobileServiceContext() : base(CONNECTION_STRING_NAME)
    {
    }

    protected override void OnModelCreating(DbModelBuilder modelBuilder)
    {
      ... we add some logic here to create indexes etc.
    }
}

当我尝试在服务器上远程调试应用程序时,在首次创建MobileServiceContext类型的对象时,执行就无法继续进行(我什至尝试在服务器上添加try-catch)。创建,但是它没有进入异常捕获...)。

显然,我们从不输入OnModelCreating方法...

同样,完全相同的代码在本地和Azure上均可完美运行。

我应该在服务器中配置任何东西吗?

解决方法

仅作记录,原来我不得不在web.config中添加以下重定向:

<dependentAssembly>
    <!--   Don't change this redirect!! It is part of a problem with a MS bug,see here https://github.com/dotnet/corefx/issues/25773 -->
    <assemblyIdentity name="System.Net.Http" publicKeyToken="B03F5F7F11D50A3A" culture="neutral" />
    <bindingRedirect oldVersion="0.0.0.0-4.2.0.0" newVersion="4.0.0.0" />
</dependentAssembly>

相关问答

依赖报错 idea导入项目后依赖报错,解决方案:https://blog....
错误1:代码生成器依赖和mybatis依赖冲突 启动项目时报错如下...
错误1:gradle项目控制台输出为乱码 # 解决方案:https://bl...
错误还原:在查询的过程中,传入的workType为0时,该条件不起...
报错如下,gcc版本太低 ^ server.c:5346:31: 错误:‘struct...