次のことを知って、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 オブジェクトを簡単にマップするにはどうすればよいですか?