We are working with the Entity Framework, and most of the developers have named instances of SQL Server 2008 R2.
The connection strings that EF uses look like:
<add name="MyConnectionString"
connectionString="Data Source=MyInstance\MySource;
Initial Catalog=MyDatabase;
Integrated Security=True"
providerName="System.Data.SqlClient" />
So the problem, for multiple developers, is that the data source is different for everyone.
Previously, I'd use an ODBC DSN to get around this problem, but according to this post that's not directly available.
Is there a way to set up the connection string so that everyone's different data source can be accessed?