假設,你的類是這樣的:
class EntityDto
{
public int EntityId { get; set; }
}
class EntityId<T>
{
public T Id { get; set; }
}
class Entity
{
public EntityId<int> EntityId { get; set; }
}
映射將是這樣的:
static void CreateMapForEntityId<T>()
{
Mapper.CreateMap<T, EntityId<T>>()
.ForMember(_ => _.Id, options => options.MapFrom(_ => _));
}
static void TestMapping(int id)
{
CreateMapForEntityId<int>();
Mapper
.CreateMap<Entity, EntityDto>()
.ForMember(_ => _.EntityId, options => options.MapFrom(_ => _.EntityId.Id))
.ReverseMap();
Mapper.AssertConfigurationIsValid();
var entity = new Entity { EntityId = new EntityId<int> { Id = id } };
var entityDto = Mapper.Map<EntityDto>(entity);
Debug.Assert(entityDto.EntityId == id);
var entityClone = Mapper.Map<Entity>(entityDto);
Debug.Assert(entityClone.EntityId.Id == id);
}
基本上不會有任何 「自動」 -mapping。
我在想方向 - 你想映射'EntityId'到'Entity'到'EntityDto'並且向後? –
Kamo