I want to connect to my Azure SQL server using Azure Active Directory Authentication in a .Net Core App 1.1 .
On using a connection string similar to the following connection string:
Data Source=n9lxnyuzhv.database.windows.net; Authentication=Active Directory Integrated; Initial Catalog=testdb;
I get this exception:
System.ArgumentException: 'Keyword not supported: 'authentication'.'
I understand that AAD Auth is available for SQL servers in .Net Framework 4.6 and above. Is it possible to connect to server through AAD in .Net Core Apps. If so, how?
Any help is appreciated.