我正在使用 EF Core 使用。 Net Core 2.2 。我想使用现有数据库生成模型。 Azure SQL 使用集成身份验证(MFA)针对Active Directory 进行验证。我无法使用 Scafold-DBContext 生成模型
使用PM控制台运行scaffold-dbcontext
PM> Server=tcp:<servername>,1433;Initial Catalog=<Dbname>;Persist Security Info=False;User ID=<myusername>;Password=<mypassword>;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Authentication="Active Directory Integrated";
尝试
PM> Server=tcp:<servername>,1433;Initial Catalog=<Dbname>;Persist Security Info=False;User ID=<myusername>;Password=<mypassword>;MultipleActiveResultSets=False;Encrypt=True;TrustServerCertificate=False;Authentication="Active Directory Integrated";
I除了应该生成模型并且应该将其连接到Azure SQL之外。而我可以使用SSMS进行连接