如何删除天蓝色移动服务中的特定记录
How to delete particular record in azure mobile Service
如何删除 Azure 移动服务中的特定记录。
例如,我在名为 country 的天蓝色移动服务中有一个 table 有两列
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; }
}
您需要致电 DeleteAsync
并传递您要删除的项目。在这种情况下,包含您的 country_id
.
的项目
await todoTable.DeleteAsync(country);
如何删除 Azure 移动服务中的特定记录。 例如,我在名为 country 的天蓝色移动服务中有一个 table 有两列 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; }
}
您需要致电 DeleteAsync
并传递您要删除的项目。在这种情况下,包含您的 country_id
.
await todoTable.DeleteAsync(country);