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.

Using Automapper I create a simple map:

Mapper.CreateMap<MyCustomerDTO, YourCustomerDTO>()

I often need to go the other way too. Do I need to also create the mapping the other way, or will Automapper infer it based on the above mapping?

Mapper.CreateMap<YourCustomerDTO, MyCustomerDTO>()   //Needed?
share|improve this question

3 Answers

up vote 2 down vote accepted

no. you must crate two way map.a good helper method for two way mapping could be :

 protected virtual void ViceVersa<T1, T2>()
        {
            Mapper.CreateMap<T1, T2>();
            Mapper.CreateMap<T2, T1>();
        }

then use it like this :

ViceVersa<T1, T2>();
share|improve this answer
Note that this can now be done "out of the box" with the ReverseMap option. – Mightymuke Dec 17 '12 at 17:55

you need to create second mapping as well. A simple test trying to run your app without second mapping will give you a runtime error

share|improve this answer
I don't think it gives a compilation error if I remember correctly... it gives a runtime error? No mapping for B,A found or something along those lines? – alexjamesbrown Dec 17 '12 at 17:44
that's right... I remembered that it gives some kind of an error. – Dmitry Dec 17 '12 at 18:14

This is a duplicate to Do i need to create automapper createmap both ways?

Note the answer regarding .ReverseMap() here.

Note that .ReverseMap() is for basic mapping. If you need to use options (such as specific ForMember mappings), you will need to create a custom reverse map.

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.