同个项目写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/?
<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出现的问题的主要内容,如果未能解决你的问题,请参考以下文章
VS2008调用webservice 没有生成Reference.cs文件 所以不能调用方法