0
私は「ソース」クラスと「宛先」クラスを持っている:AutoMapper:エンティティリストにツリーを変換
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; }
}
どのように地図のActionSourceデータIEnumerable<EventInfoDestination>
にAutoMapperと?
ありがとうございます。 linqでそれは確かに簡単です、私はすることができます –