Esempio n. 1
0
 public DbTransactionEx(DbTransaction inner, IAopFilter appender, DbConnectionEx _connectionEx)
 {
     this.inner         = inner;
     this.appender      = appender;
     this._connectionEx = _connectionEx;
     appender.TransactionBegan(_connectionEx.ConnectionId, inner.IsolationLevel);
 }
Esempio n. 2
0
 public DbCommandEx(DbCommand inner, DbConnectionEx _connectionEx, IAopFilter appender)
 {
     this.inner         = inner;
     this._connectionEx = _connectionEx;
     this.appender      = appender;
 }