DataService<T> Class

Definition

The main entry point for developing an ADO.NET Data Service.

generic <typename T>
public ref class DataService : System::Data::Services::IRequestHandler
[System.ServiceModel.Activation.AspNetCompatibilityRequirements(RequirementsMode=System.ServiceModel.Activation.AspNetCompatibilityRequirementsMode.Allowed)]
[System.ServiceModel.ServiceBehavior(InstanceContextMode=System.ServiceModel.InstanceContextMode.PerCall)]
public class DataService<T> : System.Data.Services.IRequestHandler
[<System.ServiceModel.Activation.AspNetCompatibilityRequirements(RequirementsMode=System.ServiceModel.Activation.AspNetCompatibilityRequirementsMode.Allowed)>]
[<System.ServiceModel.ServiceBehavior(InstanceContextMode=System.ServiceModel.InstanceContextMode.PerCall)>]
type DataService<'T> = class
    interface IRequestHandler
Public Class DataService(Of T)
Implements IRequestHandler

Type Parameters

T

Type that defines the data service.

Inheritance
DataService<T>
Attributes
Implements

Remarks

The DataService<T> class does the basic integration of all components of the server system. A new data service that uses system defaults for authorization and caching is created by defining a class that derives from the DataService<T> class and by referencing a compatible data model.

The type of the DataService<T> must expose at least one property that returns an entity set that is an IQueryable<T> collection of entity types. This class must also implement the IUpdatable interface to enable updates to be made to entity resources.

Constructors

DataService<T>()

Creates a new data service that deploys data of the type indicated by the template class.

Properties

CurrentDataSource

Gets the data source instance currently being used to process the request.

ProcessingPipeline

Gets an object that defines the events for the data service processing pipeline.

Methods

AttachHost(IDataServiceHost)

Attaches the data service host to the data service identified by the parameter host.

CreateDataSource()

Creates a data source of the template class that will be used by the data service.

Equals(Object)

Determines whether the specified object is equal to the current object.

(Inherited from Object)
GetHashCode()

Serves as the default hash function.

(Inherited from Object)
GetType()

Gets the Type of the current instance.

(Inherited from Object)
HandleException(HandleExceptionArgs)

Called when an exception is raised while processing a request.

MemberwiseClone()

Creates a shallow copy of the current Object.

(Inherited from Object)
OnStartProcessingRequest(ProcessRequestArgs)

Called before processing each request. For batch requests, it is called one time for the top batch request and one time for each operation in the batch.

ProcessRequest()

Processes an HTTP request.

ProcessRequestForMessage(Stream)

Processes an HTTP request.

ToString()

Returns a string that represents the current object.

(Inherited from Object)

Applies to