I'm not sure about the next issue, so any help would be appreciated. I am working on an application that is related to the MSSQL online database and everything is working fine. The model I'm using is an entity model.
The problem is that I need to change the connection string from the online database to the local one, but I do not know how to do it. Creating a new model is not an option. I tried changing the connection string in web.config, but the errors are the only thing I get ...
This is what I have in web.config:
<connectionStrings> <add name="PravosudnaAkademijaEntities" connectionString="metadata=res://*/PrakModel.csdl|res://*/PrakModel.ssdl|res://*/PrakModel.msl;provider=System.Data.SqlClient;provider connection string='Data Source=HRVOJE-PC;Initial Catalog=pak_baza;Integrated Security=True" providerName="System.Data.EntityClient" />
source share