我在Visual Studio 16.0.3中创建了一个小项目,并创建了SQLExpress数据库。连接和迁移都工作正常。
然后我在SSMS 17.5中打开了数据库,并能够查看和操作数据。
但是当我回到Visual Studio时,我可以在SQL Server对象资源管理器中看到该数据库,但是无法连接到它。
我已完成以下操作:
从SSMS分离数据库
封闭式SSMS
重新启动VS
重新启动计算机
在任务管理器中停止并重新启动SQLExpress
毕竟,我仍然可以在SSMS中使用该数据库,但在VS中无法使用它。
我希望能够双向连接。任何想法表示赞赏。
修改
这是app_config,我正在使用localhost。这只是我自己使用的本地数据库,我通常在其他人正在使用的数据库上使用update-database -script,所以这就是我一直在做的事情。您能告诉我如何设置连接字符串吗?
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<configSections>
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<connectionStrings>
<add name="context" providerName="System.Data.SqlClient" connectionString="Data Source=(LocalDB)\MSSQLLocalDB;
AttachDbFilename=C:\Program Files\Microsoft SQL Server\MSSQL14.SQLEXPRESS\MSSQL\DATA\db.mdf;
Integrated Security=True"/>
</connectionStrings>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>
编辑2 我更改了连接字符串,如下所示,现在可以使用了。必须在SQL对象资源管理器中添加新的连接。
<add name="context" providerName="System.Data.SqlClient"
connectionString="Server=.\SQLEXPRESS;
Database=db;Integrated Security=True;
Connect Timeout=15;Encrypt=False;ApplicationIntent=ReadWrite;
MultiSubnetFailover=False" />