我的业务逻辑 Pet 类中有一个 Model 类。
在这个类中,我有一个名为Type的鉴别器属性(int = 1, 2, 3, ...)
最终映射必须是特定派生类的 Dto。
我使用 ConstructUsing,但它在 Stack Overflow Exception 上继续,因为它在基类型映射规则上有一个递归。
派生的 Dto 类已正确映射,因为它们没有递归。
还尝试了 PreserveReferences() 没有运气
using AutoMapper;
using System;
using System.Collections.Generic;
namespace ConsoleAppMapper
{
class Program
{
static void Main(string[] args)
{
var mapper = new MapperConfiguration(cfg =>
{
cfg.CreateMap<Pet, Dto.Pet>()
.PreserveReferences()
.ForMember(dst => dst.Name, opt => opt.MapFrom(src => src.PetName))
.ConstructUsing((src, context) =>
{
switch (src.Type)
{
case 1: return context.Mapper.Map<Pet, Dto.Dog>(src);
case 2: return context.Mapper.Map<Pet, Dto.Cat>(src);
case 3: return context.Mapper.Map<Pet, Dto.Mouse>(src);
default: return context.Mapper.Map<Pet, Dto.Pet>(src);
}
})
;
cfg.CreateMap<Pet, Dto.Dog>();
cfg.CreateMap<Pet, Dto.Cat>();
cfg.CreateMap<Pet, Dto.Mouse>();
}).CreateMapper();
var pets = new List<Pet>
{
new Pet { PetName = "Bob", Type = 1 },
new Pet { PetName = "Tom", Type = 2 },
new Pet { PetName = "Jerry", Type = 3 },
new Pet { PetName = "Duffy", Type = 4 },
};
var dtoList = mapper.Map<IEnumerable<Pet>, IEnumerable<Dto.Pet>>(pets);
}
}
public class Pet
{
public string PetName;
public int Type;
}
}
namespace Dto
{
public class Pet
{
public string Name;
}
public class Dog : Pet
{
}
public class Cat : Pet
{
}
public class Mouse : Pet
{
}
}
PIPIONE
相关分类