傻瓜式 ADO .NET 数据服务

发布于 2024-08-03 01:49:17 字数 107 浏览 4 评论 0原文

我目前正在进行另一个项目,该项目基于ADO .NET DS,我需要尽快进入该主题。

简而言之,ADO .NET 数据服务的目的是什么?解释 ADO .NET 数据服务的最佳资源是什么?

I'm taking another project currently, which is based on the ADO .NET DS, and I need to get into the topic as quick as possible.

What is the purpose of ADO .NET Data Services in simple words? What is the best resource explaining ADO .NET Data Services?

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

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

发布评论

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

评论(2

音栖息无 2024-08-10 01:49:17

用于数据访问的 REST 风格 Web 服务。通过 REST 风格,这意味着使用 HTTP GET/PUT/DELETE/POST 而不是 SQL DML,并且为了返回结果,它使用 JSON 和 Atom Pub(一种类似于 RSS 的 xml 格式)而不是二进制结果结构和协议(例如Microsoft SQL Servers TDS(用于将表发送回客户端的协议)。

由于它构建在实体框架之上,即 Web 服务部分是从 edmx 数据模型生成的,因此选择使用 ADO.NET 数据服务也就选择使用实体框架。

REST style web services for data access. By REST style, that means using HTTP GET/PUT/DELETE/POST instead of SQL DML, and for returning results it uses JSON and Atom Pub (an xml format kind-of similar to RSS) instead of a binary result structure and protocol like Microsoft SQL Servers TDS (the protocol used for sending tables back to clients).

Since it is built on top of the Entity Framework,i.e. the web service part is generated from a edmx data model, choosing to use ADO.NET Data Services is also choosing to use Entity Framework.

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