如何将asp.net标识连接到SQL Azure

时间:2016-07-27 14:29:58

标签: c# asp.net entity-framework azure azure-sql-database

正常情况下,当注册成员连接到defaultconnection时。但是我的数据库在Azure中。如何连接到SQL Azure?我试图改变连接字符串,就像这个

<add name="DefaultConnection" connectionString="data source=[azuresercername].database.windows.net;initial catalog=[azuredatabasename];user id=[userid];password=[userpassword];" providerName="System.Data.EntityClient"/>
   

失败了。所以我想问一下如何解决。请。谢谢。

1 个答案:

答案 0 :(得分:2)

您需要确保为开发计算机和/或Azure资源的IP地址打开SQL Azure防火墙。请参阅以下文章:

https://azure.microsoft.com/en-us/documentation/articles/sql-database-configure-firewall-settings/

此外,连接服务器时需要使用SSL。本文将指导您获取完整的连接字符串:

https://azure.microsoft.com/en-us/documentation/articles/sql-database-develop-dotnet-simple/