Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My asp.net app work with .net 4 and has about 50 users.

i do insert and update in some table's with My Datacontext.

i use TransactionScope.

public void Save()
 {

//Insert and Update in some table's in datacontext; 

 TransactionOptions scopOption = new TransactionOptions();

   scopOption.IsolationLevel = IsolationLevel.ReadUncommitted;

 using (scope = new TransactionScope(TransactionScopeOption.Required, scopOption))
  {
   datacontext.SubmitChanges();  

//Insert and Update in some other table's in datacontext again ;

  datacontext.SubmitChanges();

  }
}

i want that 2 SubmitChanges() be in a transaction that if one rollback , all changes rollback.

1)is TransActionScope best way?
2) why Ram of IIS server Always is full. it take about 6 Gb of Ram.
i dont know probelm is form db that doesnot dispose or TransactionScope.
3)what kind of IssolatiponLevel should i use?
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.