couple of questions regarding the connection strings section for websites in the windows azure portal:
do the settings in the portal take precedence over what's in web.config? If so, should I not include connection strings in the web.config file? Are the settings in the portal sometimes referred to as app.config?
can i set connection strings for ado.net entities in the windows azure portal? This does not seem to work for this specific type of connection string.
in the portal i included the following connection string and gave it the same name as what is in my web.config:
metadata=res:///Models.TABLENAME.csdl|res:///Models.TABLENAME.ssdl|res://*/Models.TABLENAME.msl;provider=System.Data.SqlClient;provider connection string="Server=tcp:SERVERNAME.database.windows.net;Database=DATABASENAME;User ID=USER;Password=PASSWORD;Trusted_Connection=False;Encrypt=True;
The connection string in my web.config file works in my dev environment, but i think i have something typed wrong on the azure portal.