I have a working SQL Server Express running in my computer as MYPC\SQLEXPRESS
.
In my ASP.NET MVC 5 project I need to use this connection string in order to connect with it:
<add name="maymoneyDB"
connectionString="Server=MYPC\SQLEXPRESS;Initial Catalog=myDB;Integrated Security=True;MultipleActiveResultSets=True"
providerName="System.Data.SqlClient" />
The problem is that my coworkers have their SQL Server instances at .
so I need to change the connection string each time I pull changes from TFS.
How can I change my server path? I try with link but seems to change @@SERVERNAME
but not the path.
Any explanation about handle this situation is also helpful (maybe change the path is not the best approach).
Thanks