我有“Source”类和“Destination”类:
public class ActionSource
{
public string Action { get; set; }
public IEnumerable<PlaceSource> Places { get; set; }
}
public class PlaceSource
{
public string Place { get; set; }
public IEnumerable<EventSource> Events { get; set; }
}
public class EventSource
{
public string Event { get; set; }
}
public class EventInfoDestination
{
public string Action { get; set; }
public string Place { get; set; }
public string Event { get; set; }
}
如何使用AutoMapper将ActionSource数据映射到IEnumerable<EventInfoDestination>
?
答案 0 :(得分:1)
此映射没有太多自动。你应该手工完成。 AM只会妨碍你。
{{1}}