Esempio n. 1
0
 public DbNetCommand(string _sqlText, string _connectionString, DbNetParamterCollection _paramters, string _commandType, DbNetIsolationLevel _isolationLevel)
 {
     SqlText          = _sqlText;
     ConnectionString = _connectionString;
     Paramters        = _paramters;
     CommandType      = _commandType;
     IsolationLevel   = _isolationLevel;
 }
Esempio n. 2
0
 public MySqlDbNetScope(string connectionString, DbNetIsolationLevel isolationLevel)
 {
     _connection_string = connectionString;
     _isolationLevel    = isolationLevel;
 }