How to configure Entity Framework to use different connection string when executing migrations and when working with the database.
The reason for that is quite simple, I do not want to have sa login for the website, but I want to be able to execute migrations.
After not finding anything on the web for how to do that, the Object Explorer helped.
The EF Migration
Configuration
class (whereAutomaticMigrationsEnabled = true
is set) has also a property namedTargetDatabase
.This can be set to whatever connection string you want like so: