向 WCF 公开的 ADO.NET 数据服务实体

发布于 2024-07-30 01:59:00 字数 106 浏览 5 评论 0原文

如果 WCF 服务正在使用 ADO.NET 数据服务,向 WCF 使用者公开数据对象的最佳方法是什么? DTO 具有您自己的数据合同属性? 有没有办法将数据对象直接公开给 WCF 服务的客户端?

If a WCF service is consuming ADO.NET Data Services, what is the best approach to expose the Data objects to the WCF conusmers? DTO with your own Data Contract attributes? Is there a way to expose the Data objects directly to the WCF service's clients?

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

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

发布评论

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

评论(1

怀里藏娇 2024-08-06 01:59:00

使用 DTO 几乎总是最佳实践。

我还没有看过 ADO.NET 数据服务。 如果它们类似于实体框架,那么您不想直接公开它们。 实体框架公开与实现相关的数据,包括与您希望消费者使用的数据无关的基类的属性。

Using a DTO is almost always the best practice.

I haven't looked at ADO.NET Data Services. If they're anything like Entity Framework, then you do not want to expose them directly. Entity Framework exposes implementation-dependent data, including properties of the base classes which have nothing to do with the data you want your consumers to use.

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