Is this the correction connection string that I should add to my remote hosting of the production server to where I have uploaded my application as it is on page 802 of your book?
Code:
<add name="CandyStoreEntities" connectionString="metadata=res://*/App_Code.CandyStore.csdl|res://*/App_Code.CandyStore.ssdl|res://*/App_Code.CandyStore.msl;provider=System.Data.SqlClient;provider connection string="data source=localhost;Initial Catalog=CandyStore;User ID=****yd;password=****ez;MultipleActiveResultSets=True"" providerName="System.Data.EntityClient"/>
Here is the regular connection string for the remote server that the remote hosting service gave me to use:
<add name="strConn" connectionString="Data Source=localhost;Initial Catalog=DBNAME;Integrated Security=false;User ID=DBUSERNAME;Password=DBPASSWORD" />
The only thing about your entity connection string that I am not understanding is what is this part of the connection string all about?:
provider connection string="
Does that part need to be changed too?