C# 代码第一个windows azure连接字符串

C# 代码第一个windows azure连接字符串,c#,azure,connection-string,code-first,C#,Azure,Connection String,Code First,这是我的连接字符串: <add name="FollowUpDatabase" connectionString="Server=tcp:yncm4e4uxp.database.windows.net,1433;Database=[FollowUp];User ID=qwertyuiop1234567890@yncm4e4uxp;Password=XXXXXXXXX;Trusted_Connection=False;Encrypt=True;Connection Timeout=

这是我的连接字符串:

     <add name="FollowUpDatabase" connectionString="Server=tcp:yncm4e4uxp.database.windows.net,1433;Database=[FollowUp];User ID=qwertyuiop1234567890@yncm4e4uxp;Password=XXXXXXXXX;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;" providerName="System.Data.SqlClient"/> 
    <add name="FollowUpDatabase" connectionString="Data Source=NET-PC;Initial Catalog=FollowUp;Persist Security Info=True; User ID=sa; password=1" providerName="System.Data.SqlClient" />
我应该换什么?(密码和登录名正确)

编辑

以下是正在工作的本地连接字符串:

     <add name="FollowUpDatabase" connectionString="Server=tcp:yncm4e4uxp.database.windows.net,1433;Database=[FollowUp];User ID=qwertyuiop1234567890@yncm4e4uxp;Password=XXXXXXXXX;Trusted_Connection=False;Encrypt=True;Connection Timeout=30;" providerName="System.Data.SqlClient"/> 
    <add name="FollowUpDatabase" connectionString="Data Source=NET-PC;Initial Catalog=FollowUp;Persist Security Info=True; User ID=sa; password=1" providerName="System.Data.SqlClient" />


可能有帮助您是否验证了可以使用SQL Server Management Studio访问该数据库?您是否也为您的IP设置了防火墙规则(在管理门户中完成)以便能够连接到该数据库服务器?是否能够连接管理研究您是否已将数据库作为“链接资源”添加到您的web角色中。在查看云服务时,您将在管理门户中找到此选项卡。我正在使用常规VS mvc4模板(无云模板),并从下载的配置文件中发布它