Data Client (WCF Data Services)

Any application can interact with an Open Data Protocol (OData)-based data service if it can send an HTTP request and process the OData feed that a data service returns. This interoperability enables you to access OData-based services from a broad range of Web-enabled applications. WCF Data Services includes client libraries that provide a richer programming experience when you consume OData feeds from .NET Framework or Silverlight-based applications.

The two main classes of the client library are the DataServiceContext class and the DataServiceQuery<TElement> class. The DataServiceContext class encapsulates operations that are supported against a specified data service. Although OData services are stateless, the context is not. Therefore, you can use the DataServiceContext class to maintain state on the client between interactions with the data service in order to support features such as change management. This class also manages identities and tracks changes. The DataServiceQuery<TElement> class represents a query against a specific entity set.

This section describes how to use client libraries to access and change data from a .NET Framework or Silverlight-based client application. Other client libraries are available that enable you to consume an OData feed in other kinds of applications. For more information, see the OData SDK.

In This Section

See Also

Other Resources

Data Service (WCF Data Services)

Getting Started with WCF Data Services