I've got a class that has properties that are other classes and I've noticed that the built in Map.ObjectToObject(source, dest) doesn't seem to want to map them.
public class MyModel
{
public SomeOtherClass MyProperty {get;set;}
}
Even if I try to map it to another instance of MyModel it will not map the MyProperty property.
Any one have this problem or a solution (preferably without having to touch the toolkit sources on my end).