Ejemplo n.º 1
0
 public CafeDb()
 {
     _tableDb = new TableDb();
     _options = new TransactionOptions
     {
         IsolationLevel = IsolationLevel.ReadUncommitted
     };
 }
Ejemplo n.º 2
0
 public CafeDb()
 {
     _personDb   = new PersonDb();
     _tableDb    = new TableDb();
     _connection = new SqlConnection(_connectionString);
     _options    = new TransactionOptions
     {
         IsolationLevel = IsolationLevel.ReadUncommitted
     };
 }