Reputation: 68
I have created one Web Api project and add entity framewok 6 in this.
and Create the API App in App service in azure portal and publish Web Api project in this app.
everything is working fine but when I removed the Connection string from Web.config file and set connection string in azure app
is not working.
I have put this dummay connection sting in my web.config file
Please help me what I am doing wrong or there is another approach for API App in azure portal.
Upvotes: 0
Views: 385
Reputation: 500
Connection string in web config will have "
for escaped quotes. you need to change them to '' before adding to azure app services connection string
Upvotes: 0