I set up Microsoft Entra ID auth in my mvc app so app can use passwordless connection string to database.
services.AddAuthentication(OpenIdConnectDefaults.AuthenticationScheme) .AddMicrosoftIdentityWebApp(Configuration.GetSection("AzureAd"));
But it works too good. Site requires Microsoft login in order to get to the page.
How I can turn this off and still has passwordless connection string?