如何将我的 dto 映射到我的 ViewModel,知道以下内容:
我的dto:
public class SomeClass
{
public int myProperty{get; set;}
}
我的视图模型:
public class MyViewModel
{
public SomeClass theDto {get; set;}
public int someExtraProperty
}
所以,我的 ViewModel 包含我的 dto + 其他属性。如何轻松映射 dto 对象?