vote up 0 vote down star
1

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?

flag

2 Answers

vote up 2 vote down check

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/

link|flag
vote up 1 vote down

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.

link|flag
Are you 100% sure in your last paragraph? Can you elaborate or provide a link? – Yacoder Aug 27 at 16:41
Here is one link: packtpub.com/article/… demonstrates that this is the way it is designed to be used. HOWEVER, you can use datasources that only support IQueriable. msdn.microsoft.com/en-gb/library/… It looks to me like one must write a lot more code for ADO.NET Services on top of IQueriable than on top of an edmx. – MatthewMartin Aug 27 at 17:21
Ok, still there is another option, and you might want to use another ORM that produces IQueryable mappings... – Yacoder Aug 27 at 17:41
Anyway thanks :) – Yacoder Aug 27 at 17:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.