傻瓜式 ADO .NET 数据服务
我目前正在进行另一个项目,该项目基于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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
关于该主题的微软页面有一个相当好的总结 -
http://msdn。 microsoft.com/en-us/data/bb931106.aspx
该网站还有一个很好的介绍
http://greggalipeau.wordpress.com/2008/03/21/introduction-to-adonet-data-services-part-1/
The microsoft page on the topic has a fairly good summary -
http://msdn.microsoft.com/en-us/data/bb931106.aspx
This site also has a good intro
http://greggalipeau.wordpress.com/2008/03/21/introduction-to-adonet-data-services-part-1/
用于数据访问的 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.