使用 EF4 构建 Web 服务

发布于 2024-11-05 19:24:26 字数 187 浏览 0 评论 0原文

据我所知,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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

风渺 2024-11-12 19:24:26

您应该看看 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

〃温暖了心ぐ 2024-11-12 19:24:26

如果不将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文