KJai
KJai

Reputation: 1705

Ado.net data services

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

Upvotes: 0

Views: 87

Answers (1)

Steve Willcock
Steve Willcock

Reputation: 26849

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)

Upvotes: 1

Related Questions