I am trying to encrypt my app service's connection string via Azure Key Vault and this guide and I am getting the following error:
The specified named connection is either not found in the configuration, not intended to be used with the EntityClient provider, or not valid. I originally thought it was because of the " characters in the string so I replaced those with actual "'s. Now I'm thinking it may be because it is not a normal connection string, but a db first entity framework one as shown:
connectionString="metadata="res://*/Models.{Project}.csdl|res://*/Models.{Project}.ssdl|res://*/Models.{Project}.msl";provider=System.Data.SqlClient;provider connection string="data source={datasource};initial catalog={db};persist security info=True;user id={id};password={password};MultipleActiveResultSets=True;App=EntityFramework"" providerName="System.Data.EntityClient" />
(bracketed values are there just to hide the sensitive info). How do I get this to work w/ Azure Key Vault?