码迷,mamicode.com
首页 > Web开发 > 详细

EntityFramework在root目录web.config中的配置设置

时间:2015-10-15 22:03:45      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

未找到具有固定名称“System.Data.SqlClient”的 ADO.NET 提供程序的实体框架提供程序。请确保在应用程序配置文件的“entityFramework”节中注册了该提供程序。有关详细信息,请参阅 http://go.microsoft.com/fwlink/?LinkId=260882。

确保项目中引入 pasting

entityFramework.dll,然后在配置文件中配置(如果使用nuget)install包,可以忽略该篇随笔

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

 .........................

...........................

......................... 

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

 

EntityFramework在root目录web.config中的配置设置

标签:

原文地址:http://www.cnblogs.com/Tmc-Blog/p/4883682.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!