var idList=new int[]{1, 2, 3, 4};
var friendsToUpdate = await Context.Friends.Where(f =>
idList.Contains(f.Id).ToListAsync();
foreach(var item in previousEReceipts)
{
item.msgSentBy = "1234";
}
Bạn có thể sử dụng foreach để cập nhật từng phần tử đáp ứng điều kiện của bạn.
Đây là một ví dụ theo cách chung chung hơn:
var itemsToUpdate = await Context.friends.Where(f => f.Id == <someCondition>).ToListAsync();
foreach(var item in itemsToUpdate)
{
item.property = updatedValue;
}
Context.SaveChanges()
Nói chung, bạn có thể sẽ sử dụng các phương thức không đồng bộ với các truy vấn await cho db.