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.
Entity Framework でのトランザクション管理のパターンが本当に必要ですか? これらはすべて Entity Framework に組み込まれていることがわかるからです。
必要に応じて「作業単位」パターンを使用できますが、通常はリポジトリ パターンで使用できますが、Entity Framework でトランザクションを使用してもまったく問題ありません。
using (TransactionScope transaction = new TransactionScope()) { //transactional work here }
MSDN ソース