DataController Class

[This documentation is for preview only, and is subject to change in later releases. Blank topics are included as placeholders.]

DataController extends the base ApiController by adding higher level application patterns and features to facilitate the development of CRUD centric controllers.

Inheritance Hierarchy

System.Object
  System.Web.Http.ApiController
    System.Web.Http.Data.DataController
      System.Web.Http.Data.EntityFramework.DbDataController<TContext>
      System.Web.Http.Data.EntityFramework.LinqToEntitiesDataController<TContext>

Namespace:  System.Web.Http.Data
Assembly:  System.Web.Http.Data (in System.Web.Http.Data.dll)

Syntax

'Declaration
<HttpControllerConfigurationAttribute(HttpActionInvoker := GetType(DataControllerActionInvoker),  _
    HttpActionSelector := GetType(DataControllerActionSelector))> _
Public MustInherit Class DataController _
    Inherits ApiController
[HttpControllerConfigurationAttribute(HttpActionInvoker = typeof(DataControllerActionInvoker), HttpActionSelector = typeof(DataControllerActionSelector))]
public abstract class DataController : ApiController
[HttpControllerConfigurationAttribute(HttpActionInvoker = typeof(DataControllerActionInvoker), HttpActionSelector = typeof(DataControllerActionSelector))]
public ref class DataController abstract : public ApiController
[<AbstractClass>]
[<HttpControllerConfigurationAttribute(HttpActionInvoker = typeof(DataControllerActionInvoker), HttpActionSelector = typeof(DataControllerActionSelector))>]
type DataController =  
    class
        inherit ApiController
    end
public abstract class DataController extends ApiController

The DataController type exposes the following members.

Constructors

  Name Description
Protected method DataController Initializes a new instance of the DataController class.

Top

Properties

  Name Description
Protected property ActionContext Gets the HttpActionContext for the currently executing action.
Protected property ChangeSet Gets the current ChangeSet.
Public property Configuration (Inherited from ApiController.)
Public property ControllerContext (Inherited from ApiController.)
Protected property Description Gets the DataControllerDescription for this DataController.
Public property ModelState (Inherited from ApiController.)
Public property Request (Inherited from ApiController.)
Public property Url (Inherited from ApiController.)

Top

Methods

  Name Description
Protected method AuthorizeChangeSet Verifies that the user is authorized to submit the current ChangeSet.
Public method Dispose() (Inherited from ApiController.)
Protected method Dispose(Boolean) (Inherited from ApiController.)
Public method Equals Determines whether the specified Object is equal to the current Object. (Inherited from Object.)
Public method ExecuteAsync Executes data controller in an asynchronous manner. (Overrides ApiController.ExecuteAsync(Void, HttpResponseMessage).)
Protected method ExecuteChangeSet Invokes the action for each operation in the current ChangeSet.
Protected method Finalize Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.)
Public method GetHashCode Serves as a hash function for a particular type. (Inherited from Object.)
Public method GetType Gets the Type of the current instance. (Inherited from Object.)
Protected method Initialize Initializes data controller. (Overrides ApiController.Initialize(HttpControllerContext).)
Protected method MemberwiseClone Creates a shallow copy of the current Object. (Inherited from Object.)
Protected method PersistChangeSet Finalizes changes after all the operations in the current ChangeSet have been invoked.
Public method Submit Performs the operations indicated by the specified ChangeSet by invoking the corresponding actions for each.
Public method ToString Returns a string that represents the current object. (Inherited from Object.)
Protected method ValidateChangeSet Validates the current ChangeSet.

Top

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

Reference

System.Web.Http.Data Namespace