我正在尝试连接到远程数据库 这是我的connectionString:
<add name="myprojectname.DataContext.Models.FBAppContext"
connectionString="Server=xxx.xx.xxx.190,1433;database=myprojectname;Integrated Security=true"
providerName="System.Data.SqlClient"/>
我正在尝试其他connectionStrings,如:
<add name="myprojectname.DataContext.Models.FBAppContext"
connectionString="Data Source=xxx.xx.xxx.190,1433\myprojectname-SQL1;Initial Catalog=myprojectname;Integrated Security=true"
providerName="System.Data.SqlClient"/>
端口1433已打开
我得到错误: 从数据库获取提供程序信息时发生错误。这可能是由实体框架使用不正确的连接字符串引起的。检查内部异常以获取详细信息,并确保连接字符串正确。 内部异常:提供程序未返回ProviderManifestToken字符串。
答案 0 :(得分:0)
试
connectionString="Data Source=xxx.xx.xxx.190,1433;Initial Catalog=Alllarm;Integrated Security=true"