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.
它真的需要实体框架中的事务管理模式吗?因为我看到所有这些都内置在实体框架中。
如果您愿意,您可以使用“工作单元”模式,通常使用存储库模式,但使用实体框架的事务非常好。
using (TransactionScope transaction = new TransactionScope()) { //transactional work here }
MSDN 源码