我有以下课程:
public class Entity
{
}
public class Company : Entity
{
}
public class Person : Entity
{
}
public class SomeOther
{
public Entity A { get; set; }
}
以及以下DTO:
public class EntityDTO
{
}
public class SomeOtherDTO
{
public EntityDTO A { get; set; }
}
以及以下映射:
CreateMap<Person, EntityDTO>();
CreateMap<Company, EntityDTO>();
有什么办法CreateMap<Entity, EntityDTO>()
并告诉Automapper基于派生类型使用相关映射?