IMobileServiceLocalStore.DeleteAsync Method

Definition

Overloads

DeleteAsync(MobileServiceTableQueryDescription)

Deletes all the items from local table that match the query.

DeleteAsync(String, IEnumerable<String>)

Deletes items from local table with the given list of ids

DeleteAsync(MobileServiceTableQueryDescription)

Deletes all the items from local table that match the query.

public System.Threading.Tasks.Task DeleteAsync (Microsoft.WindowsAzure.MobileServices.Query.MobileServiceTableQueryDescription query);
abstract member DeleteAsync : Microsoft.WindowsAzure.MobileServices.Query.MobileServiceTableQueryDescription -> System.Threading.Tasks.Task
Public Function DeleteAsync (query As MobileServiceTableQueryDescription) As Task

Parameters

Returns

A task that completes when delete has been executed on local table.

Applies to

DeleteAsync(String, IEnumerable<String>)

Deletes items from local table with the given list of ids

public System.Threading.Tasks.Task DeleteAsync (string tableName, System.Collections.Generic.IEnumerable<string> ids);
abstract member DeleteAsync : string * seq<string> -> System.Threading.Tasks.Task
Public Function DeleteAsync (tableName As String, ids As IEnumerable(Of String)) As Task

Parameters

tableName
String

Name of the local table.

ids
IEnumerable<String>

A list of ids of the items to be deleted

Returns

A task that completes when delete query has executed.

Applies to