This line under startup.cs sets the migration assembly:
options.UseSqlServer(Configuration["ConnectionStrings:DefaultConnection"], b => b.MigrationsAssembly("QuickApp.Pro")));
Change it to "DAL" or your preferred assembly.
You'll need to change it in DesignTimeDbContextFactory.cs too.
For more information on this topic please see this link: https://docs.microsoft.com/en-us/ef/core/managing-schemas/migrations/projects
This line under startup.cs sets the migration assembly:
options.UseSqlServer(Configuration["ConnectionStrings:DefaultConnection"], b => b.MigrationsAssembly("QuickApp.Pro")));
Change it to "DAL" or your preferred assembly.
You'll need to change it in DesignTimeDbContextFactory.cs too.
For more information on this topic please see this link: https://docs.microsoft.com/en-us/ef/core/managing-schemas/migrations/projects
KeithSinclair has reacted to this post.