Entity Framework and ACID-ic transactions

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
 
J

Jesse Houwing

* 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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top