如何找到实体框架创建的数据库?

时间:2015-04-26 20:13:38

标签: c# entity-framework-6

我按照说明(https://msdn.microsoft.com/en-gb/data/jj193542.aspx)从代码创建新数据库。它创建了数据库,我可以从中检索数据。唯一的问题是我不知道数据库在哪里。

当我查看SQL Server对象资源管理器时,它只列出(localdb)实例,并且只列出系统数据库。

我尝试过服务器资源管理器。当我连接到(localdb)\ v11.0时,它存在,但没有包含我的表的数据库。当我尝试。\ SQLEXPRESS它说没有安装实例。

如何确定实体框架创建的数据库?

我的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 个答案:

没有答案