找不到我的Entity Framework数据库

时间:2015-04-24 15:37:48

标签: c# .net entity-framework

我对代码第一实体框架数据库感到有点困惑。

我创建了一个新的DbContext和类,我将在该上下文中存储,如下所示:

namespace MyProject.Subproject.Something
{
    public class MyItem
    {
        public string One { get; set; }
        public string Two { get; set; }
        [Key]
        public string Three { get; set; }
        public string Four { get; set; }
    }

    public class MyAppData : DbContext
    {
        public DbSet<MyItem> MyItems { get; set; }
    }
}

我知道它可以正常工作,因为我能做到这一点而不会失败:

var db = new MyAppData();
MyItem i = new MyItem();
// ... fill in item
db.MyItems.Add(i);
db.SaveChanges();

此外,如果我重新启动应用程序,我会发现db.MyItems.Count()以反映项目实际上是持久存储在某个地方。

我假设这个存储在localdb中,因为我没有设置SQL Server数据库。我希望能够做的就是在localdb的某个地方查看表格,但我似乎无法找到它。

如果我转到Data Sources -> Add New Data Source -> Database -> Data Set -> New Connection -> Microsoft SQL Server,然后输入(localdb)v11.0作为服务器名称并下拉数据库列表,我看不到列出的MyAppData或MyItem。

修改:我在App.config中看到的是<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">

编辑2 :完整的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=xxxxxxx" 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>

3 个答案:

答案 0 :(得分:10)

您需要将数据库服务器设置为new。这是对EF 6.1.1以后的更改。您的参数中提到了MSSQLLocalDB。有关更改的更多详细信息,请访问https://entityframework.codeplex.com/workitem/2246

MSSQLLocalDB 是SQL Server 2014上的默认实例名称,而 v11.0 是SQL Server 2012上的默认实例名称

答案 1 :(得分:2)

PendingIntent

以上代码使用Microsoft示例;用于BloggingContext替换您的using (var db = new BloggingContext()) { var connectionString = db.Database.Connection.ConnectionString; Console.WriteLine(connectionString); } 类。它将为您提供实体框架正在使用的连接字符串,其中包括实例名称。

答案 2 :(得分:0)

是的 - 基于defaultConnectionFactory中的参数,您看起来就像使用的是默认的SQL 2014实例,而不是2012实例。

(localdb)\ ProjectsV12实例由SQL Server数据工具(SSDT)

创建

(localdb)\ MSSQLLocalDB是SQL Server 2014 LocalDB默认实例名称

并且(localdb)\ v11.0是SQL Server 2012 LocalDB默认实例名称