Trying to skip property mapping based on a specific field on viewModel. Is there any way to access source object in ForAllMembers -> Condition method
Mapper.CreateMap<AViewModel, AEntity>()
.IgnoreMembers(ignoreMembers)
.ForAllMembers(o => {
o.Condition(ctx => {
//Need to access AViewModel instance here
return "Id" == ctx.MemberName;
});
});
Any help is appreciated.