0

我有以下课程:

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 使用基于派生类型的相关映射?

4

0 回答 0