0
我對Automapper有疑問。這是我用例: 我有這些類:Automapper - 地圖嵌套屬性
經營業務:
public class Item
{
public NestedItem NestedItem{get;set;}
}
public class NestedItem
{
public string Name{get;set;}
}
視圖模型:
public class ItemViewModel
{
public string NestedItemName{get;set;}
}
當我想項目映射到ItemViewModel。自動映射器地圖屬性NestedItem.Name
到正確。 但以相反的方式,它不起作用。映射不會更改NestedItem.Name的值。
[Automapper map into nested class]的可能重複(http://stackoverflow.com/questions/7924185/automapper-map-into-nested-class) – 2014-11-06 02:30:42