❔ ConnectionString to Azure SQL Server
I have created the following sql server in Azure, copied the ConnectionString and pasted in my appsettings.
My issue is the "Authentication="Active Directory Default" . Which looks like it's being formatted incorrectly. I've also tried to put it on the same line. The application won't start. But I'm able to connect to it from SSMS.
Server=tcp:dbname.database.windows.net,1433;Initial Catalog=dbname;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;Authentication="Active Directory Default";
My issue is the "Authentication="Active Directory Default" . Which looks like it's being formatted incorrectly. I've also tried to put it on the same line. The application won't start. But I'm able to connect to it from SSMS.
Server=tcp:dbname.database.windows.net,1433;Initial Catalog=dbname;Encrypt=True;TrustServerCertificate=False;Connection Timeout=30;Authentication="Active Directory Default";

