I have the classes:
public class Person{ /* Props here */ }
public class PersonViewModel { /* Props here */ }
Then the list:
List<Person> people = new List<Person>();
List<PersonViewModel> peopleVM = Mapper
.MapList<Person, PersonViewModel>(people); //Problem here.
What is the correct way to do this?
, List>(person)`
and
`Mapper.Map
– doganak Jul 23 '12 at 08:22,List>(person)`
, List>(person).ReverseMap()
– WholeLifeLearner Aug 03 '16 at 11:49