您如何 运行 从自定义 NuGet 包迁移 EF?

How do you run EF migrations from a custom NuGet package?

我有一个 c# class 库,它有自己的数据库上下文和 Entity Framework 迁移。

我的解决方案包含一个引用 class 库作为项目引用的网站。

我可以通过将默认项目设置为我的 Class 库并使用以下命令,从包管理器控制台为 Class 库应用 EF 迁移:

update-database -StartupProject MyMainWebProj -Context MyClassLibDbContext

我已经为 class 库创建了一个私有 NuGet 包,并更新了网站以引用 NuGet 包而不是项目引用。

由于 class 库是通过 NuGet 包引用的,因此我不知道如何 运行 EF 迁移。

您可以在服务配置期间使用 Use*() 方法的构建器对象,如下所述:https://github.com/jasontaylordev/CleanArchitecture/blob/d0f133ee026aec5cd5856c5592c307b5f20fa8e4/src/Infrastructure/DependencyInjection.cs#L28

services.AddDbContext<ApplicationDbContext>(options =>
    options.UseSqlServer(
        configuration.GetConnectionString("DefaultConnection"),
        b => b.MigrationsAssembly(typeof(SomeClassInTheOtherAssembly).Assembly.FullName)));