使用 EF4 构建 Web 服务
据我所知,Web 服务项目最多可以使用 NET 3.5。 现在,我想使用Entity Framework 4作为数据访问技术。
EF4 仅在 NET 4.0 中可用。
我是否遗漏了什么或者我根本无法将 Web 服务与 EF4 连接?
问候 马里尤斯
PS.如果我错过了一些明显的事情,请原谅我。
A Web Service project can use up to NET 3.5 as far as I have noticed.
Now, I want to use Entity framework 4 as a data access technology.
EF4 is available within NET 4.0 only.
Am I missing something or I simply cannot connect Web Services with EF4 ?
Regards
Mariusz
ps. Forgive me if I missed something obvious.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该看看 WCF 数据服务。它们允许您公开部分或全部 EF 4.0 模型,以供客户端通过 WCF 服务使用。
查看以下内容:
WCF 数据服务示例
WCF 数据服务概述
You should have a look at WCF Data Services. They allow you to expose part or all of a EF 4.0 model, to be consumed by a client via a WCF service.
have a look at the following:
WCF Data Service Example
WCF Data Service Overview
如果不将 Web 服务项目升级到 .NET 4.0,则无法在 Web 服务中使用 EFv4。 .NET 3.5 中的程序无法引用/使用 .NET 4.0 中的程序集。这将要求您的 .NET 3.5 Web 服务将 EFv4 数据访问层用作另一个 Web 服务,这将严重影响解决方案的性能并大大增加部署复杂性。
You cannot use EFv4 in your web service if you don't upgrade the web service project to .NET 4.0. Programs in .NET 3.5 cannot reference / use assemblies from .NET 4.0. That would require that your .NET 3.5 web service consumes EFv4 data access layer as another web service which would badly affect performance of your solution and highly increase deployment complexity.