Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能建议我如何使用实体框架处理批量更新?
例如:更新 100 到 1000 个 Id 之间的列表 (List) 的字段,该列表是主键。单独调用每个更新似乎开销很大并且需要很长时间。
直到您调用SaveChanges()数据库中的任何数据都没有更新,因此您可以进行多少更改。
SaveChanges()
如果您想要一种更结构化的方式来保存对数据库的更改,您可以查看工作单元设计模式。