我正在尝试使用AutoMapper将实体上的集合转换为字典。当我使用Map函数时,这是有效的,但是当我使用可查询的扩展ProjectTo时,它会抛出异常。
我在下面创建了一个可复制的示例(通常ProjectTo将应用于EF Core queryable,但在这个示例中,我只是从列表中创建了queryable -结果例外是相同的)。
using AutoMapper;
using AutoMapper.QueryableExtensions;
var cfg = new MapperConfiguration(config =>
{
config.CreateMap<ParentItem, ParentItemDTO>()
.ForMember(d => d.ChildItems,
o => o.MapFrom(src => src.ChildItems.ToDictionary(key => key.ChildId, value => value)));
config.CreateMap<ChildItem, ChildItemDTO>();
// I have tried adding this and it does not resolve it - throws a different exception
//config.CreateMap<KeyValuePair<string, ChildItem>, KeyValuePair<string, ChildItemDTO>>();
});
var mapper = new Mapper(cfg);
var parent = new ParentItem
{
ParentId = "1",
ChildItems = new List<ChildItem>() {
new ChildItem() { ChildId = "1", Name = "Child 1" },
new ChildItem() { ChildId = "2", Name = "Child 2" }
}
};
var singleResult = mapper.Map<ParentItem, ParentItemDTO>(parent);
var parentQueryable = (new List<ParentItem>() { parent }).AsQueryable();
// This line fails
var projectionResult = parentQueryable.ProjectTo<ParentItemDTO>(mapper.ConfigurationProvider);
public class ParentItem
{
public string ParentId { get; set; }
public List<ChildItem> ChildItems { get; set; }
}
public class ChildItem
{
public string ChildId { get; set; }
public string Name { get; set; }
}
public class ParentItemDTO
{
public string ParentId { get; set; }
public Dictionary<string, ChildItemDTO> ChildItems { get; set; }
}
public class ChildItemDTO
{
public string ChildId { get; set; }
public string Name { get; set; }
}
对于单个结果成功地工作,但是当它碰到ProjectTo行时,它将抛出以下异常:
System.InvalidOperationException
HResult=0x80131509
Message=Missing map from System.Collections.Generic.KeyValuePair`2[System.String,ChildItem] to System.Collections.Generic.KeyValuePair`2[System.String,ChildItemDTO]. Create using CreateMap<KeyValuePair`2, KeyValuePair`2>.
我试过添加一个KeyValuePair映射(在上面的代码中注释掉),但是它会抛出一个不同的异常:
System.ArgumentException: 'Argument types do not match'
有谁知道是否可以使用ProjectTo从集合成员映射到像这样的字典成员?是我的方法有问题,还是这是一个错误/限制与AutoMapper?
我使用的是AutoMapper 11.0.1和。net 6。
CreateMap<ChildItem, KeyValuePair<string, ChildItemDTO>>.ConvertUsing(c => new KeyValuePair<string, ChildItemDTO>(c.ChildId, new ChildItemDTO() { ChildId = c.ChildId, Name = c.Description }))
与MyGet构建一起使用。对于您的版本,尝试映射到Dictionary
。