Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I map my dto to my ViewModel, knowing the following :

My dto:

public class SomeClass
{
  public int myProperty{get; set;}
 }

my viewModel:

public class MyViewModel
{
 public SomeClass theDto {get; set;}

 public int someExtraProperty
}

So, my ViewModel contains my dto + other properties. How can I easily map the dto object ?

share|improve this question

1 Answer

up vote 0 down vote accepted

actually the following seems to work !

AutoMapper.Mapper.CreateMap<SomeClass, MyViewModel>().ForMember(d => d.theDto, s => s.MapFrom(src => src));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.