来自 visual studio 的连接字符串中的奇怪问题
strange issue in connection string from visual studio
您好,我无法连接,我收到一条错误消息,未找到服务器,问题是我在 Web 配置中的数据源 属性 中的连接字符串。
<connectionStrings>
<add name="dbHolaStaffConnectionString" connectionString="Data Source=localhost\SQL2016;Initial Catalog=dbHolaStaff;user id=xx;password=xx;MultipleActiveResultSets=True;Application Name=EntityFramework" providerName="System.Data.SqlClient" />
</connectionStrings>
我以多种方式更改了源代码,但无法正常工作。
DESKTOP-VNAJJMF\SQL2016
.\SQL2016
localhost\SQL2016
sql管理工作室中的服务器名称是:DESKTOP-VNAJJMF\SQL2016
我的用户名和密码是正确的,我该如何解决这个问题?我不知道为什么视觉工作室一直显示该错误。
我还在 sql 服务器中启用了远程访问,但没有任何效果。
你能试试下面的吗
<connectionStrings>
<add name="dbHolaStaffConnectionString" connectionString="Server=DESKTOP-VNAJJMF\SQL2016;Database=dbHolaStaff;user id=xx;password=xx;MultipleActiveResultSets=True;Trusted_Connection=True;Application Name=EntityFramework" providerName="System.Data.SqlClient" />
</connectionStrings>
您好,我无法连接,我收到一条错误消息,未找到服务器,问题是我在 Web 配置中的数据源 属性 中的连接字符串。
<connectionStrings>
<add name="dbHolaStaffConnectionString" connectionString="Data Source=localhost\SQL2016;Initial Catalog=dbHolaStaff;user id=xx;password=xx;MultipleActiveResultSets=True;Application Name=EntityFramework" providerName="System.Data.SqlClient" />
</connectionStrings>
我以多种方式更改了源代码,但无法正常工作。
DESKTOP-VNAJJMF\SQL2016 .\SQL2016 localhost\SQL2016
sql管理工作室中的服务器名称是:DESKTOP-VNAJJMF\SQL2016
我的用户名和密码是正确的,我该如何解决这个问题?我不知道为什么视觉工作室一直显示该错误。 我还在 sql 服务器中启用了远程访问,但没有任何效果。
你能试试下面的吗
<connectionStrings>
<add name="dbHolaStaffConnectionString" connectionString="Server=DESKTOP-VNAJJMF\SQL2016;Database=dbHolaStaff;user id=xx;password=xx;MultipleActiveResultSets=True;Trusted_Connection=True;Application Name=EntityFramework" providerName="System.Data.SqlClient" />
</connectionStrings>