示例#1
0
 public TableMapper(XPObjectSpace objectSpace, Database database, AttributeMapper attributeMapper)
 {
     _objectSpace      = objectSpace;
     _database         = database;
     _attributeMapper  = attributeMapper;
     _extraInfoBuilder = new ExtraInfoBuilder(_objectSpace, _attributeMapper);
 }
示例#2
0
 public ColumnMapper(DataTypeMapper dataTypeMapper, AttributeMapper attributeMapper)
 {
     _dataTypeMapper   = dataTypeMapper;
     _attributeMapper  = attributeMapper;
     _objectSpace      = _attributeMapper.ObjectSpace;
     _extraInfoBuilder = new ExtraInfoBuilder(_objectSpace, _attributeMapper);
 }
示例#3
0
 public ColumnMapper(DataTypeMapper dataTypeMapper, AttributeMapper attributeMapper) {
     _dataTypeMapper = dataTypeMapper;
     _attributeMapper = attributeMapper;
     _objectSpace = _attributeMapper.ObjectSpace;
     _extraInfoBuilder = new ExtraInfoBuilder(_objectSpace, _attributeMapper);
 }
示例#4
0
 public TableMapper(ObjectSpace objectSpace,Database database,AttributeMapper attributeMapper) {
     _objectSpace = objectSpace;
     _database = database;
     _attributeMapper = attributeMapper;
     _extraInfoBuilder = new ExtraInfoBuilder(_objectSpace, _attributeMapper);
 }