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?