I like to create web app to upload file, save to azure data lake, read/write to azure SQL Server.
I use my Azure AD clientId/secret to access data lake,
my Azure SQL Server connection string like: Server=tcp:{MyAzureSQLServer}.database.windows.net,1433;Initial Catalog={MyAzureDatabase};Persist Security Info=False;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Authentication="Active Directory Integrated"
Asp.Net Mvc Core, data lake works fine but Azure SQL report: Keyword not supported: 'authentication'.
Asp.Net Mvc (Framework), Azure SQL works, but data lake report error: The type initializer for 'Microsoft.IdentityModel.Clients.ActiveDirectory.TokenCache' threw an exception.
What I'm doing wrong?
Thanks, Wes