I have a .NET Core 2.2 web app deployed to Azure App Service which I'm connecting to an Azure SQL managed instance. What should be the connection string that is to be written in Appsettings.json. I tried the below connection string which I found out in Azure portal but that is not working.
"AZURESQLCONNSTR_":Server=tcp:azure-abcde.database.windows.net,1433;Persist Security Info=False;User ID=userid;Password=password;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;
But when I try running the below Azure App Service I'm not getting any data.
http://productwebapp.azurewebsites.net/api/ProductDetails/GetProductDetails.
Can you please suggest a way to resolve this issue?