Defines the implementations specific details for a particular database.
 public ColumnPropertiesMapper(Dialect dialect, string type)
 {
     this.dialect = dialect;
     this.type    = type;
 }
Example #2
0
 protected TransformationProvider(Dialect dialect, string connectionString)
 {
     _dialect          = dialect;
     _connectionString = connectionString;
     _logger           = new Logger(false);
 }