在 WCF 客户端和服务之间共享合约

发布于 2024-12-06 17:39:32 字数 139 浏览 0 评论 0原文

我的理解是,当开发人员(公司)同时开发客户端和服务时,最好将数据和服务契约放入单独的程序集中,以供客户端和服务应用程序使用。这是为了避免在使用 svcutil 等生成代理类时出现代码重复。

这确实是首选方法吗?您是否曾经有过一个不符合此规则的项目?

It was my understanding that when a developer (a company) develops both client and service, it’s better to put data and service contracts into a separate assembly to be used by both client and service applications. It is to avoid code duplication while generating a proxy classes using e.g. svcutil.

Is this indeed the preferred approach and have you ever had a project that was an exception from this rule?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

就像说晚安 2024-12-13 17:39:32

我们在项目中一直这样做,我不知道有什么可以反对这种方法。

We do this all the time in our projects and i don't know what can be said against that approach.

停滞 2024-12-13 17:39:32

共享合约程序集可能会导致不必要的依赖关系,因为这些合约类(例如 datacontract\servicecontract)可以包含方法。然后,这些方法可以在客户端\服务器代码中透明地调用,从而打破了这些契约的封装。数据\服务合约仅用作共享数据的机制。

Sharing contract assembly can lead to unwanted dependencies, since these contract classes such as datacontract\servicecontract can contain methods. These methods then can get called transparently in client\server code hence breaking the encapsulation of these contracts. Data\Service contracts are meant to be used only as an mechanism to share data.

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