如何删除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; }
}
答案 0 :(得分:2)
您需要致电DeleteAsync
并传递您要删除的项目。在这种情况下,包含country_id
。
await todoTable.DeleteAsync(country);