Hi.
How to write IgnoreAllNoneExisting for Unmapped properties in Automapper 5.0.2 ?!
Thanks.
[Best Regards]
Use the MemberList in the CreateMap options. You're likely wanting to assert against either the Source side, or no member options at all:
CreateMap<Foo, Bar>(MemberList.Source);
Thank you so much for helping me out tonight.
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.
Most helpful comment
Use the MemberList in the CreateMap options. You're likely wanting to assert against either the Source side, or no member options at all: