在.NETStandard Library项目中执行EFcore迁移

时间:2017-10-30 16:17:45

标签: entity-framework .net-core entity-framework-core .net-standard

我的问题基本上是:是否可以在.NET Standard 2.0库项目中使用Entity Framework Core(和迁移)? (不是核心项目)

我目前有两个项目:

  • ASP.NET Core 主项目:我不想在这个项目中使用数据库或EF,所以我添加了对.NETstandard2.0 DAL项目的引用

  • .NETStandard2.0 数据访问层项目:带有数据库迁移的EF Core项目,用于访问数据库。主项目使用此项目从数据库中获取数据。

对于.NETStandard DAL项目,我使用以下设置和类:.csproj文件包含EF和迁移的依赖项:

<ItemGroup>
    <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="2.0.0" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="2.0.0" />
    <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="2.0.0" />
</ItemGroup>

<ItemGroup>
    <DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.0" />
</ItemGroup>

在致电dotnet restore后,我创建了一个DbContext后代:

class MyTestContext: DbContext
{
    public MyTestContext(DbContextOptions<MyTestContext> options) : base(options)
    {
    }

    public DbSet<Class1> Class1Table { get; set; }
}

添加了DbContextFactory IDesignTimeDbContextFactory,如:

class DbContextFactory : IDesignTimeDbContextFactory<MyTestContext>
{
    public MyTestContext CreateDbContext(string[] args)
    {
        var builder = new DbContextOptionsBuilder<MyTestContext>();
        builder.UseSqlServer("Server=(localdb)\\mssqllocaldb;Database=efmigrations2017;Trusted_Connection=True;MultipleActiveResultSets=true",
            optionsBuilder => optionsBuilder.MigrationsAssembly(typeof(MyTestContext).GetTypeInfo().Assembly.GetName().Name));

        return new MyTestContext(builder.Options);
    }
}

好的,到目前为止一切正常并且.NETStandard项目已成功构建。

现在我想通过执行:

来创建我的第一个迁移
dotnet ef migrations add InitialCreate

这会抛出一个错误: enter image description here

如果我正确理解错误消息,EF Core只能用于.NET Core和.NET Framework项目以及.NETStandard项目中的 NOT 吗?

如果是这样,我如何将EF数据库逻辑与其他应用程序分开?

如果没有,我如何让迁移工作?

提前谢谢

1 个答案:

答案 0 :(得分:4)

您有两种选择。

一:使用ASP.NET Core项目作为启动项目。

dotnet ef migrations add InitialCreate --startup-project ..\MyWebApplication

二:您的类库中的跨目标.NET Core。 (编辑*.csproj

<PropertyGroup>
  <!-- Note: This property name becomes plural. -->
  <TargetFrameworks>netcoreapp2.0;netstandard2.0</TargetFrameworks>
</PropertyGroup>