In a WPF application I use LINQ to SQL, SQL Server 2008.
SQL Server computer was replaced and SQL Server was installed under instance name not the same as before. Database was restored under the same name as before.
The new connection string was added to the application.
But it appeared that it is impossible for the application to connect to db due to the new instance name. The LINQ to SQL datacontext required to be updated. The problem was solved only after tables were deleted and then again added in the project's LINQ datacontext .dbml page.
Is there a way to change SQL Server instance name without the necessity to edit project in Visual Studio?