同个项目写webservice引用EF出现的问题

Posted 【唐】三三

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了同个项目写webservice引用EF出现的问题相关的知识,希望对你有一定的参考价值。

 错误1:

定的架构无效。错误: DataModel.ssdl(2,2) :

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

解决办法,将以下代码添加至web.config配置文件中即可:

  <entityFramework>

    <providers>

      <provider invariantName="System.Data.SqlClient" type="System.Data.Entity.SqlServer.SqlProviderServices, EntityFramework.SqlServer" />

    </providers>

  </entityFramework>

 引用:

 

 

 

 

 

错误2:无法读取配置节“entityFramework”,因为它缺少节声明

<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" />
</configSections>

 

以上是关于同个项目写webservice引用EF出现的问题的主要内容,如果未能解决你的问题,请参考以下文章

vs2010怎么添加webservice

VS2008调用webservice 没有生成Reference.cs文件 所以不能调用方法

如何添加webservice的引用,并发布到服务器上

C# 动态加载WebService

在 VS 2010 中更新 WCF 服务对 WebService 问题的引用

webservice使用EF生成的model序列化问题