IMobileServiceSyncTable<T> 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 local table.
public interface IMobileServiceSyncTable<T> : Microsoft.WindowsAzure.MobileServices.Sync.IMobileServiceSyncTable
type IMobileServiceSyncTable<'T> = interface
interface IMobileServiceSyncTable
Public Interface IMobileServiceSyncTable(Of T)
Implements IMobileServiceSyncTable
Type Parameters
- T
- Implements
Properties
MobileServiceClient |
Gets a reference to the MobileServiceClient associated with this table. (Inherited from IMobileServiceSyncTable) |
SupportedOptions |
The supported odata options on the remote table (Inherited from IMobileServiceSyncTable) |
TableName |
Gets the name of the table. (Inherited from IMobileServiceSyncTable) |
Methods
CreateQuery() |
Creates a query for the current table. |
DeleteAsync(JObject) |
Deletes an |
DeleteAsync(T) |
Deletes an |
IncludeTotalCount() |
Creates a query that will ensure it gets the total count for all the records that would have been returned ignoring any take paging/ limit clause specified by client or server. |
InsertAsync(JObject) |
Inserts an |
InsertAsync(T) |
Inserts an |
LookupAsync(String) |
Lookup an instance from a table by its id. |
OrderBy<TKey>(Expression<Func<T,TKey>>) |
Creates a query by applying the specified ascending order clause. |
OrderByDescending<TKey>(Expression<Func<T,TKey>>) |
Creates a query by applying the specified descending order clause. |
PullAsync(String, String, IDictionary<String,String>, Boolean, CancellationToken, PullOptions) |
Pulls all items that match the given query from the associated remote table. Supports incremental sync. (Inherited from IMobileServiceSyncTable) |
PullAsync(String, String, IDictionary<String,String>, Boolean, CancellationToken) |
Pulls all items that match the given query from the associated remote table. Supports incremental sync. (Inherited from IMobileServiceSyncTable) |
PullAsync<U>(String, IMobileServiceTableQuery<U>, Boolean, CancellationToken, PullOptions) |
Pulls all items that match the given query from the associated remote table. |
PullAsync<U>(String, IMobileServiceTableQuery<U>, Boolean, CancellationToken) |
Pulls all items that match the given query from the associated remote table. |
PurgeAsync(String, String, Boolean, CancellationToken) |
Deletes all the items in local table that match the query. (Inherited from IMobileServiceSyncTable) |
PurgeAsync<U>(String, IMobileServiceTableQuery<U>, Boolean, CancellationToken) |
Deletes all the items in local table that match the query. |
PurgeAsync<U>(String, IMobileServiceTableQuery<U>, CancellationToken) |
Deletes all the items in local table that match the query. |
ReadAsync() |
Returns instances from a table. |
ReadAsync(String) |
Executes a query against the table. (Inherited from IMobileServiceSyncTable) |
ReadAsync<U>(IMobileServiceTableQuery<U>) |
Returns instances from a table based on a query. |
RefreshAsync(T) |
Refresh the current instance with the latest values from the local table. |
Select<U>(Expression<Func<T,U>>) |
Creates a query by applying the specified selection. |
Skip(Int32) |
Creates a query by applying the specified skip clause. |
Take(Int32) |
Creates a query by applying the specified take clause. |
ThenBy<TKey>(Expression<Func<T,TKey>>) |
Creates a query by applying the specified ascending order clause. |
ThenByDescending<TKey>(Expression<Func<T,TKey>>) |
Creates a query by applying the specified descending order clause. |
ToEnumerableAsync() |
Gets the elements of the table asynchronously. |
ToListAsync() |
Gets the elements of the table asynchronously and return the results in a new List. |
UpdateAsync(JObject) |
Updates an |
UpdateAsync(T) |
Updates an |
Where(Expression<Func<T,Boolean>>) |
Creates a query by applying the specified filter predicate. |
Extension Methods
Applies to
Azure SDK for .NET