Entity Framework and ACID-ic transactions

  • Thread starter Thread starter Geoff
  • Start date Start date
G

Geoff

I'm learning about Entity Framework (both 3.5 and beta 4.0) but cannot seem
to find anything on the web explaining how to manage ACID-ic properties and
isolation levels (i.e. repeatable reads, etc) when working with the new
technology from MS.

My assumption is there is tuning available via attribute level programming,
but thus far my web queries have found nothing.

Can anyone guide me to some useful links?

chers
 
* Geoff wrote, On 13-1-2010 22:10:
I'm learning about Entity Framework (both 3.5 and beta 4.0) but cannot seem
to find anything on the web explaining how to manage ACID-ic properties and
isolation levels (i.e. repeatable reads, etc) when working with the new
technology from MS.

My assumption is there is tuning available via attribute level programming,
but thus far my web queries have found nothing.

Can anyone guide me to some useful links?

chers

You can use System.Transactions.TransactionScope and/or
System.Transactions.Transaction to manage the isolationlevel for
updates/inserts etc.

Is that what you're after?
 
Back
Top