Automapper基本类型,派生类型DTO映射

时间:2018-07-16 13:08:37

标签: automapper automapper-6

我有以下课程:

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

0 个答案:

没有答案