7

Is possible with Automapper to map a flat object to complex object graph?

 Mapper.CreateMap<PersonDto,Person>()

Map PersonDto.BirthCertificateFatherName to Person.BirthCertificate.FatherName

Omu
  • 69,856
  • 92
  • 277
  • 407

1 Answers1

3

No it can't, it does it the other way

Person.BirthCertificate.FatherName to  PersonDto.BirthCertificateFatherName

UPDATE: ValueInjecter can do this:

//unflattening
person.InjectFrom<UnflatLoopValueInjection>(personDto);

//flatenning
personDto.InjectFrom<FlatLoopValueInjection>(person);
Omu
  • 69,856
  • 92
  • 277
  • 407