如何将EF核心迁移添加到.net核心2类库中?

时间:2017-11-30 13:29:34

标签: c# entity-framework entity-framework-core .net-core-2.0

我创建了一个.net核心2类库。我创建了实体和实体类型配置。我创建了DbContext

public class EFDBContext : DbContext
{
    public EFDBContext(DbContextOptions options) : base(options)
    {

    }
}

然后我创建了一个TemporaryDbContextFactory

public class TemporaryDbContextFactory : IDesignTimeDbContextFactory<EFDBContext>
{
    public EFDBContext CreateDbContext(string[] args)
    {
        var builder = new DbContextOptionsBuilder<EFDBContext>();
        builder.UseSqlServer("Name=AppConnectionString",
            optionsBuilder => optionsBuilder.MigrationsAssembly(typeof(EFDBContext).GetTypeInfo().Assembly.GetName().Name));
        return new EFDBContext(builder.Options);
    }
}

我正在尝试运行Add-Migration但我什么也没得到。未创建迁移

那我在这里错过了什么?

1 个答案:

答案 0 :(得分:7)

听起来你正在遇到问题#10298。将以下内容添加到*.csproj文件中:

<PropertyGroup>
  <GenerateRuntimeConfigurationFiles>true</GenerateRuntimeConfigurationFiles>
</PropertyGroup>