My understanding is that in order to implement Azure AD Managed Service Identity access to a SQL Database in Azure, I would need to create a SqlConnection
with a retrieved token.
To add that token to the SqlConnection
, .NET 4.6+ has an AccessToken
property to do this. .NET Core 2.0 does not.
Is there any way around this?
Implementing Azure AD Managed Service Identity in a core app doesn't seem possible at this point unless I am misunderstanding.