I have two classes (MVC view model) which inherits from one abstract base class.
abstract class BaseModel { } class Car : BaseModel { public string Speed {
Here is the topic describing Mapping Inheritance.
The following should work for you:
Mapper.CreateMap() .Include() .Include();//.ForMember(general mapping) Mapper.CreateMap();//.ForMember(some specific mapping) Mapper.CreateMap();//.ForMember(some specific mapping)