IMobileServiceTable Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Provides operations on a table for a Microsoft Azure Mobile Service.
public interface IMobileServiceTable
type IMobileServiceTable = interface
Public Interface IMobileServiceTable
- Derived
Properties
| Name | Description |
|---|---|
| MobileServiceClient |
Gets a reference to the MobileServiceClient associated with this table. |
| TableName |
Gets the name of the table. |
Methods
| Name | Description |
|---|---|
| DeleteAsync(JObject, IDictionary<String,String>) |
Deletes an |
| DeleteAsync(JObject) |
Deletes an |
| InsertAsync(JObject, IDictionary<String,String>) |
Inserts an |
| InsertAsync(JObject) |
Inserts an |
| LookupAsync(Object, IDictionary<String,String>) |
Executes a lookup against a table. |
| LookupAsync(Object) |
Executes a lookup against a table. |
| ReadAsync(String, IDictionary<String,String>, Boolean) |
Executes a query against the table. |
| ReadAsync(String) |
Executes a query against the table. |
| UndeleteAsync(JObject, IDictionary<String,String>) |
Undeletes an |
| UndeleteAsync(JObject) |
Undeletes an |
| UpdateAsync(JObject, IDictionary<String,String>) |
Updates an |
| UpdateAsync(JObject) |
Updates an |
Extension Methods
| Name | Description |
|---|---|
| ReadAsync(IMobileServiceTable, String, IDictionary<String,String>) |
Executes a query against the table. |