EntityFramework.Utilities多列更新

时间:2016-11-16 21:02:13

标签: .net entity-framework

我正在努力加快我的更新流程,并且我们正在使用EntityFramework.Utilities。代码非常简单,但我无法找到同时更新多个表的方法。

EFBatchOperation.For(_repo, _repo.CityServices)
.Where(cs => cs.serviceid == serviceid && citiesFromDB.Contains(cs.cityid) && cs.status)
.Update(x => x.status, x => false);
//I would like to be able to call this method many times...
//.Update(x => x.updateddate, x => DateTime.Now);

有没有办法做到这一点? UpdateAll方法不允许我使用Where子句。

0 个答案:

没有答案