When I use a connection string with user "sa" or another user that has "dbo" permissions everything runs fine. However I run into issues when I use a non-admin user.
CREATE TABLE permission denied in database 'SSO'
The schema is already created and entries were added to __MigrationHistory. I also configured the context for Database.SetInitializer(null);
When I use a connection string with user "sa" or another user that has "dbo" permissions everything runs fine. However I run into issues when I use a non-admin user.
CREATE TABLE permission denied in database 'SSO'
The schema is already created and entries were added to __MigrationHistory. I also configured the context for Database.SetInitializer(null);
What am I missing?