Build an EntityConnection Connection String (edmx) model connectionstring
Change edmx model connectionstring dynamically in class library (Data Access Layer) // Specify the provider name, server and database. string providerName = “System.Data.SqlClient”; string serverName = “.”; string databaseName = “AdventureWorks”; // Initialize the connection string…
Read More