views:

38

answers:

2

What is Ado.net data services. Where can i download latest version anf how to use in my asp.net ajax application?

+1  A: 

See this link

They have some "Getting Started: How Do I" information on there.

Eoin Campbell
A: 

ADO.NET Data Services is "a combination of patterns and libraries that enable the creation and consumption of data services for the web" (from the MS site)

Basically it's a framework to simplify the access and update of data via rest-like URLs, with JSon or AtomPub.

It's installed with .NET 3.5 sp1 (look for the System.Data.Services namespace in your GAC)

Steve Willcock