エントリーの編集

エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
Automapper - Mapping a nested collection to a list
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています

- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
Automapper - Mapping a nested collection to a list
I'm using Automapper to do some mapping from XSD-generated serialization object to more sane POCO... I'm using Automapper to do some mapping from XSD-generated serialization object to more sane POCO's. I'm having an issue with a particular type of mapping. public class SourceOuterObject { public SourceSet SourceSet { get; set; } } public class SourceSet { public List<SourceObject> SourceList{ get; set; } } I want to map this to: public class TargetOuterObject { public List<TargetObject> TargetLis