如何在azure移动服务中删除特定记录
本文关键字:删除 记录 服务 azure 移动 | 更新日期: 2023-09-27 18:09:06
如何删除azure移动服务中的特定记录。例如,我在azure移动服务中有一个名为国家的表,它有两列country_idcountry_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; }
}
您需要调用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