如何连接到我的应用程序使用的数据库&探究它?

时间:2014-11-04 17:00:16

标签: c# entity-framework console-application entity-framework-6

我在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>

2 个答案:

答案 0 :(得分:0)

检查配置文件中的连接字符串。

现在您添加了配置尝试:

(local)\ mssqllocaldb或。\ mssqllocaldb

答案 1 :(得分:0)

VS 2013 ultimate查看 - &gt; SQL Server对象资源管理器
在那里你会找到你的数据库。