I have a local SQL .mdf database file that I use for an integration testing project. Everything works fine on the initial machine on which I created the project, database, etc., but when I try to run the project on another computer, I get the following:
System.Data.SqlClient.SqlException: A connection was successfully made to the server, but then an error occurred during the login process. (provider: shared memory provider, error: 0 - no process is on the other end of the channel.)
I believe that while I research this problem, I will also ask the community to find out if someone has already overcome this.
An exception occurs when I create a new data context. I am using LINQ-to-SQL.
m_TransLogDataContext = new TransLogDataContext ();
Let me know if additional information is needed. Thank.
source
share