Add migration with different assembly

后端 未结 14 1251
感情败类
感情败类 2020-12-02 14:25

I am working on a project with ASP.NET CORE 1.0.0 and I am using EntityFrameworkCore. I have separate assemblies and my project structure looks like this:

Pr         


        
14条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-02 14:46

    There are multiple projects included in the Solution.

    Solution
    |- MyApp (Startup Proj)
    |- MyApp.Migrations (ClassLibrary)

    Add-Migration NewMigration -Project MyApp.Migrations
    

    Note: MyApp.Migrations also includes the DbContext.

提交回复
热议问题