Entity Framework Core 1.0 Connection Strings
We are working on a vary large ASP.NET Core MVC 1.0 application. We have 4-tiers to each of our applications as follows: DTO Repository (Entity Framework - Code First) Service (Business Logic) MVC (UI-MVC) Currently, in our repositories, which handle all database operations we have hard coded the database connection strings in the DbContext as follows: protected override void OnConfiguring(DbContextOptionsBuilder optionsBuilder) { optionsBuilder.UseSqlServer("Data Source=somedatabase.database.windows.net;Initial Catalog=database;Integrated Security=False;User ID=username;Password=password