Reputation: 543
Does EF 6 support this method for authentication and if so what is the installation process and nuget packages to make it work?
https://azure.microsoft.com/en-us/documentation/articles/sql-database-aad-authentication/
Upvotes: 3
Views: 1366
Reputation: 41749
It looks like EF6 will support this without any changes, as it "only" requires .Net 4.6, the Microsoft Active Directory Authentication Library for Microsoft SQL Server and a special connection string key, either:
Authentication=Active Directory Integrated;
Or
Authentication=Active Directory Password;
Upvotes: 3