Ejemplo n.º 1
0
 public SqTransactionProxy(SqDatabase <TConnection> host)
 {
     this._host = host;
 }
Ejemplo n.º 2
0
 public SqTransaction(SqDatabase <TConnection> host, DbTransaction dbTransaction)
 {
     this._host         = host;
     this.DbTransaction = dbTransaction;
 }
Ejemplo n.º 3
0
 public SqTransaction(SqDatabase <TConnection> host, IsolationLevel isolationLevel)
 {
     this._host           = host;
     this._isolationLevel = isolationLevel;
 }