I have a simple C# project. This is my connection string in my web.config
for the database:
<connectionStrings>
<add name="DefaultConnection"
connectionString="Data Source=172.17.0.47;Initial Catalog=DevSystemListe;User ID=web_access;Password=123456"
providerName="System.Data.SqlClient" />
</connectionStrings>
I already made sure that this connection is working. I can connect to my database from the Visual Studio with this connection and I can also see the tables and data.
When I want to update my database with update-database
, this error occurs:
A network-related or instance-specific error occurred while establishing a connection to SQL Server. The server was not found or was not accessible. Verify that the instance name is correct and that SQL Server is configured to allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified)
I uninstalled Entity Framework and then installed it again. Nothing changed.