使用EF6,我的理解是所有与EF相关的类都已移入EntityFramework.dll。我看到以下使用DbContext类的代码
namespace ConsoleApplication1
{
using System;
using System.Data.Entity;
using System.Data.Entity.Infrastructure;
public partial class MyDataModel : DbContext
{
public MyDataModel ()
: base("name=MyDataModel ")
{
}
protected override void OnModelCreating(DbModelBuilder modelBuilder)
{
throw new UnintentionalCodeFirstException();
}
此DbContext类在System.Data.Entity中定义,但项目本身在引用部分中没有对System.Data.Entity.dll的任何引用。两个问题
答案 0 :(得分:2)
System.Data.Entity是EF6的一部分。见here
答案 1 :(得分:1)
您不需要对System.Data.Entity的引用(它包含在EntityFramework.dll中)。
但是,请确保正确安装了EF 6.x. http://msdn.microsoft.com/en-us/data/ee712906.aspx
安装完成后,您会注意到两个新参考:
此外,包文件将包含
<packages>
<package id="EntityFramework" version="6.1.1" targetFramework="net45" />
</packages>
您的app.config文件将包含
<configuration>
<configSections>
<section name="entityFramework" type="System.Data.Entity.Internal.ConfigFile.EntityFrameworkSection, EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" requirePermission="false" />
</configSections>
<entityFramework>
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.SqlConnectionFactory, EntityFramework" />
<providers>
<provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />
</providers>
</entityFramework>
</configuration>