AutoMapper:将树转换为实体列表

时间:2017-08-11 16:59:06

标签: c# automapper

我有“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>

1 个答案:

答案 0 :(得分:1)

此映射没有太多自动。你应该手工完成。 AM只会妨碍你。

{{1}}