With version 4.4,
EntityFrameworkCore.DbMigrationsproject has been removed and DbContexts are unified. You can check this community article to understand the circumstances under that. If you were migrated your application from 4.3 to 4.4 please apply the steps in the article to unify your db context.Can you examine your db context class inherit from
ISaasDbContextor not?[ReplaceDbContext(typeof(IIdentityProDbContext))] [ReplaceDbContext(typeof(ISaasDbContext))] //ensure this line is exists [ConnectionStringName("Default")] public class MyDbContext : AbpDbContext<MyDbContext>, IIdentityProDbContext, ISaasDbContext //ensure this line is exists { //... }
Hi @radhikashrotre, what is your ABP Framework version?
ABP FW 4.4