Replies: 1 comment 9 replies
-
You can use |
Beta Was this translation helpful? Give feedback.
9 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
With the latest version, ForAllOtherMembers was removed. I understand the usage of the "MemberList.None", but I am doing conditions in ForAllOtherMembers and only mapping if the value is not null. How would I accomplish this now without have to map every single member?
.ForMember(dest => dest.PhoneNumbers, opt => opt.Ignore()) .ForAllOtherMembers(opts => opts.Condition((src, dest, srcMember) => srcMember != null) )
Beta Was this translation helpful? Give feedback.
All reactions