假設如下:使用AutoMapper如何在不使用AfterMap的情況下從映射父對象到子集合成員獲取值?
public class ParentSource
{
public Guid parentId { get; set; }
public ICollection<ChildSource> children { get; set; }
}
public class ChildSource
{
public Guid childId { get; set; }
}
public class ParentDestination
{
public Guid parentId { get; set; }
public ICollection<ChildDestination> children { get; set; }
}
public class ChildDestination
{
public Guid childId { get; set; }
public Guid parentId { get; set; }
public ParentDestination parent;
}
一個人如何填充使用AutoMapper不使用.AfterMap
家長的信息ChildDestination對象?
使用AfterMap有什麼問題? – PatrickSteele
很可能什麼也沒有。我認爲我遇到的實體框架錯誤促成了這個問題,畢竟是無關緊要的。但是,如果完全可能,我仍然很好奇。實際上它可能是通過.ForMember()中的地圖配置選項。 –
沒有通過IMemberConfigurationOptions –