IMobileServiceLocalStore.DeleteAsync Method
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.
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
Instance of MobileServiceTableQueryDescription
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
Azure SDK for .NET