AutoMapper bidirectional mapping
Posted
by Benny
on Stack Overflow
See other posts from Stack Overflow
or by Benny
Published on 2010-03-13T16:17:35Z
Indexed on
2010/03/13
16:25 UTC
Read the original article
Hit count: 709
automapper
|bidirectional
If I want to do bi-directional mapping, do I need to create two mapping?
Mapper.CreateMap<A, B>() and Mapper.CreateMap<B, A>()
?
© Stack Overflow or respective owner