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";
}
Koşulunuzu karşılayan her bir öğeyi güncellemek için foreach'i kullanabilirsiniz.
İşte daha genel bir şekilde bir örnek:
var itemsToUpdate = await Context.friends.Where(f => f.Id == <someCondition>).ToListAsync();
foreach(var item in itemsToUpdate)
{
item.property = updatedValue;
}
Context.SaveChanges()
Genel olarak, büyük olasılıkla await for db queries ile async metodları kullanacaksınız.