viewModelの特定のフィールドに基づいてプロパティマッピングをスキップしようとしています。ForAllMembers->Conditionメソッドでソースオブジェクトにアクセスする方法はありますか
Mapper.CreateMap<AViewModel, AEntity>()
.IgnoreMembers(ignoreMembers)
.ForAllMembers(o => {
o.Condition(ctx => {
//Need to access AViewModel instance here
return "Id" == ctx.MemberName;
});
});