Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I use automapper to update the properties values of another object without creating a new one?

share|improve this question

1 Answer

up vote 26 down vote accepted

Use the overload that takes the existing destination:

Mapper.Map<Source, Destination>(source, destination);

Yes, it returns the destination object, but that's just for some other obscure scenarios. It's the same object.

share|improve this answer
3  
Thanks, Jimmy...I purposely stayed away from AutoMapper because I was afraid of the learning curve impacting my schedule. I'm officially sorry I stayed away so long...it's much easier than I initially thought. – Neil T. Apr 8 '10 at 23:26
1  
Automapper has to be one of the most useful libraries out there. I too avoided it for a long time, much too long. I started using it today and am very surprised at how easy it is to use. – mcottingham Mar 9 at 3:59

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.