Example #1
0
 public DataCommandConfig Clone()
 {
     DataCommandConfig config = new DataCommandConfig();
     config.CommandText = this.CommandText;
     config.CommandType = this.CommandType;
     config.Database = this.Database;
     config.Name = this.Name;
     config.Parameters = this.Parameters == null ? null : this.Parameters.Clone();
     config.TimeOut = this.TimeOut;
     return config;
 }
 internal CustomDataCommand(DataCommandConfig config)
     : base(config)
 {
 }