如何连接到我的应用程序正在使用的数据库&;探究一下

本文关键字:amp 数据库 一下 连接 何连接 我的 应用程序 | 更新日期: 2023-09-27 18:29:00

我在MSDN上创建了一个简单的应用程序,这是简单的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>

如何连接到我的应用程序正在使用的数据库&;探究一下

VS 2013 ultimate
视图->SQL Server对象资源管理器
在那里你可以找到你的数据库。

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

现在您添加了配置尝试:

(local)''mssqllocaldb或。''mssqllocaldb