I have these models:
class Source
{
String A;
String B;
String C;
String D;
}
class Destination
{
String A;
String B;
Another another;
Other other;
}
class Other
{
String C;
AnotherOne Another;
}
class AnotherOne
{
String D;
}
I want to map the Source model to Destination and its children.
First approach trying using AutoMapper. So is it possible?
Or is it better to do this assignment manually?