如何删除azure移动服务中的特定记录

时间:2015-08-20 13:01:15

标签: c# azure windows-phone-8.1 azure-mobile-services

如何删除azure移动服务中的特定记录。 例如,我在azure移动服务中有一个名为 country 的表,有两列     COUNTRY_ID     COUNTRY_NAME

如果我想删除country_id = 5的记录。如何执行此操作。

//全局变量

 private MobileServiceCollection<country, country> items;
 private IMobileServiceTable<country> todoTable = App.MobileService.GetTable<country>();

// Class

 class country
 {
    public string id { get; set; }
    public string country_name { get; set; }
    public int country_id { get; set; }
 }

1 个答案:

答案 0 :(得分:2)

您需要致电DeleteAsync并传递您要删除的项目。在这种情况下,包含country_id

的项目

await todoTable.DeleteAsync(country);

您可以在此处阅读更多文档:https://azure.microsoft.com/en-us/documentation/articles/mobile-services-windows-dotnet-how-to-use-client-library/#deleting