我在MSDN
上创建了一个简单的应用程序here,这是一个简单的Code First
工作流示例,这个工作正常,它存储数据并显示存储的数据。但我不知道如何访问它正在使用的数据库?我如何连接到该数据库以探索输入的数据?
注意:我使用EF6和VS 2013终极
App.config
是:
<?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>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">
<parameters>
<parameter value="mssqllocaldb" />
</parameters>
</defaultConnectionFactory>
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>
答案 0 :(得分:0)
检查配置文件中的连接字符串。
现在您添加了配置尝试:
(local)\ mssqllocaldb或。\ mssqllocaldb
答案 1 :(得分:0)
在VS 2013 ultimate
中
查看 - &gt; SQL Server对象资源管理器
在那里你会找到你的数据库。