我试图让用户从数据库中删除一条记录,但它不会让我这样做。任何人都可以建议这样做吗?
List<Booking> item = new List<Booking>();
item = await BookingsTable
.Where(todoItem => todoItem.Email == "email" && todoItem.Slot == 9)
.ToListAsync();
if (item != null)
{
//delete the record here
}
答案 0 :(得分:0)
List<Booking> item = new List<Booking>();
item = await BookingsTable
.Where(todoItem => todoItem.Email == "email" && todoItem.Slot == 9)
.ToListAsync();
if (item != null)
{
await BookingsTable.DeleteAsync(item);
}