Connect an Azure App Service to an Azure SQL Database with Windows Authentication
问题 We have: an Azure App Service (like myappservice.azurewebsites.net ) (written in C# & .net core 2.2) An Azure SQL Server (like myserver.database.net ) Currently the App Service connects to the SQL Database via SQL Server Authentication (login+password). However, if possible, we would like to have Windows Authentication . i.e. the service should be able to login without sending username and password. That way we would not need to store any login information in our service. Is that possible?