从ID列表更新实体框架中多行 [英] Update Multiple Rows in Entity Framework from a list of ids

查看:158
本文介绍了从ID列表更新实体框架中多行的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想创建实体框架的查询,让我把ID列表,并更新与它们相关联的字段。在SQL

I am trying to create a query for entity framework that will allow me to take a list of ids and update a field associated with them.

例如:

UPDATE Friends
SET msgSentBy = '1234'
WHERE id IN (1, 2, 3, 4)

如何转换到上述实体框架?

How do I convert the above into entity framework?

推荐答案

类似下面

var idList=new int[]{1, 2, 3, 4};
using (var db=new SomeDatabaseContext())
{
    var friends= db.Friends.Where(f=>idList.Contains(f.ID)).ToList();
    friends.ForEach(a=>a.msgSentBy='1234');
    db.SaveChanges();
}



更新:



您可以更新多个字段如下

UPDATE:

you can update multiple fields as below

friends.ForEach(a =>
                      {
                         a.property1 = value1;
                         a.property2 = value2;
                      });

这篇关于从ID列表更新实体框架中多行的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆