IMobileServiceTable Interface

Definition

Provides operations on a table for a Microsoft Azure Mobile Service.

public interface IMobileServiceTable
type IMobileServiceTable = interface
Public Interface IMobileServiceTable
Derived

Properties

MobileServiceClient

Gets a reference to the MobileServiceClient associated with this table.

SystemProperties

The Mobile Service system properties to be included with items.

TableName

Gets the name of the table.

Methods

DeleteAsync(JObject)

Deletes an instance from the table.

DeleteAsync(JObject, IDictionary<String,String>)

Deletes an instance from the table.

InsertAsync(JObject)

Inserts an instance into the table.

InsertAsync(JObject, IDictionary<String,String>)

Inserts an instance into the table.

LookupAsync(Object)

Executes a lookup against a table.

LookupAsync(Object, IDictionary<String,String>)

Executes a lookup against a table.

ReadAsync(String)

Executes a query against the table.

ReadAsync(String, IDictionary<String,String>, Boolean)

Executes a query against the table.

UndeleteAsync(JObject)

Undeletes an instance from the table. This requires the soft delete feature to be enabled on the Mobile Service. Visit the link for details.

UndeleteAsync(JObject, IDictionary<String,String>)

Undeletes an instance from the table. This requires the soft delete feature to be enabled on the Mobile Service. Visit the link for details.

UpdateAsync(JObject)

Updates an instance in the table.

UpdateAsync(JObject, IDictionary<String,String>)

Updates an instance in the table.

Extension Methods

ReadAsync(IMobileServiceTable, String, IDictionary<String,String>)

Executes a query against the table.

Applies to