0

如何将我的 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 对象?

4

1 回答 1

0

实际上以下似乎有效!

AutoMapper.Mapper.CreateMap<SomeClass, MyViewModel>().ForMember(d => d.theDto, s => s.MapFrom(src => src));
于 2013-02-19T10:37:09.317 回答