Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm using AutoMapper and want to know which way is the best approach to map objects differently in different situations (for example, ignore one field in MethodA, include that field in MethdoB etc.). I can create My own MappingEngine but I was wonderign if there was a better way to achieve that.

thanks

share|improve this question
You should use different mapping engines. take a look here: lostechies.com/jimmybogard/2009/05/12/automapper-and-ioc – Davita Sep 1 '11 at 12:10

1 Answer

You can map one source to multiple destinations with automapper. For example you can have a source object with

Person

  • Id
  • FirstName
  • LastName
  • PhoneNumber

and view models

ContactInfoViewModel

  • FirstName
  • PhoneNumber

BioViewModel

  • FirstName
  • LastName
  • PhoneNumber
Mapper.Map<Person, ContactViewModel>();
Mapper.Map<Person, BioViewModel>();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.