Hello, i am trying to enable migrations for my scheduling application. I am new to this and i keep getting this message when i type enable migrations in the console
More than one context type was found in the assembly 'ScheduleWeb'.
To enable migrations for 'ScheduleWeb.Models.ApplicationDbContext', use Enable-Migrations -ContextTypeName ScheduleWeb.Models.ApplicationDbContext.
To enable migrations for 'ScheduleWeb.Models.ScheduleDbContext', use Enable-Migrations -ContextTypeName ScheduleWeb.Models.ScheduleDbContext.
Creating two migrations will create two databases. But i want my userdata along side my application data. how can i achieve this
Go to the complete details ...