有问题的连接字符串,状态关闭和打开

时间:2016-08-11 13:24:34

标签: c# android visual-studio xamarin connection-string

我的xamarin android项目中有一个连接字符串:

`<add name="NewsPushEntities" connectionString="metadata=res://*/;provider=System.Data.SqlClient;provider connection string=&quot;Data Source=ROONEY;Initial Catalog=NewsPush;Integrated Security=True;MultipleActiveResultSets=True;Application Name=EntityFramework&quot;" providerName="System.Data.EntityClient" />`

当我第一次打开我的项目时,我将状态关闭。

enter image description here

但是,当我单击以展开服务器资源管理器中的连接时,它会变为绿色:

enter image description here

然而,当我试图通过调用所述连接字符串在我的应用程序中获取某些内容时,它返回emptyhanded(这是一个以Json格式返回菜单的rest-service,它在我连接到实时服务器但不是我本地服务器时起作用。 )

与实时服务器的连接:

<add name="NewsPushEntities" connectionString="metadata=res://*/;provider=System.Data.SqlClient;provider connection string=&quot;data source=removed;initial catalog=NewsPush;persist security info=True;user id=removed;password=removed;MultipleActiveResultSets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" /> 

最后但并非最不重要的是,当我的状态打开时(扩展我的连接并变为绿色)后,我得到以下属性:

enter image description here

我是否以某种方式对连接串进行了抨击?不知道如何让这个回应。谢谢!

1 个答案:

答案 0 :(得分:1)

如果您没有收到任何错误,请在本地计算机上调试您的服务,然后使用监视窗口确定您的连接字符串是否已正确设置。