I have an application that I want to be able to configure the connection string for my LINQ to SQL. I\'ve tried so many different ways but cannot seem to get it working. I w
You can pass an override connection string into the DataContext constructor:
var db = new MyDataContext("Data Source=Something Else;")