2
votes
How to use transactions with the Entity Framework?
The ObjectContext has a connection property that you can use to manage transactions.
using (var context = new BlahEntities())
using (var tx = context.BeginTransaction())
{
// do …
