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.
我正在使用实体框架将插入和更新写入数据库。问题是我想做以前对存储过程所做的事情,即通过在它们周围放置事务来进行更新和插入原子组。linq to Entities/Entity Framework 怎么可能做这种事情?
谢谢,
萨钦
当您调用SaveChanges它时,它会在单个事务中自动执行所有内容。如果您需要将更改分组到单独的事务中,您必须按顺序执行它们并SaveChanges分别调用每个组。
SaveChanges