MobileServiceTable object
Represents a table in a mobile service to support insert, update, delete, and query operations.
var mobileServiceTable = MobileServicesClient.getTable(name);
Members
This object contains the following members:
Methods
Method | Description |
---|---|
Deletes an object from a given table. |
|
Gets the MobileServiceClient object associated with this table. |
|
Gets the name of the table. |
|
Requests that the query include the total count for all the records returned. |
|
Inserts a new object into the table. |
|
Requests an existing instance from the table by its ID value. |
|
Sorts a query against the table by the selected columns, in ascending order. |
|
Sorts a query against the table by the selected columns, in descending order. |
|
Executes a query against the table. |
|
Gets the latest property values from the table in the mobile service. |
|
Applies the specific column projection to the query against the table. |
|
Skips the specified number of rows in the query. |
|
Limits the number of rows returned by the query to the specified number. |
|
Updates an object in a given table. |
|
Filters the data returned by the query. |
Remarks
Query methods (orderBy, orderByDescending, select, skip, take and where) all return a new query object. This enables you to compose queries as a series of method calls.
Create a new instance of the MobileServiceTable object by calling the MobileServiceClient.getTable function, supplying the name of the table.
.NET Framework Equivalent
Requirements
Namespace |
WindowsAzure.MobileServices |
Library |
MobileServices.js |
See Also
Concepts
Other Resources
Get started with data in Mobile Services
How to use an HTML/JavaScript client for Azure Mobile Services