gpt4 book ai didi

c# - 使用 Automapper 映射对象列表

转载 作者:行者123 更新时间:2023-11-30 23:15:30 25 4
gpt4 key购买 nike

我有一个包含嵌套图像列表的对象 (ProductModel)。我正在尝试简化将此列表作为其属性的模型(产品)。我正在使用 Automapper,但我似乎无法获得正确的映射配置。我查看了其他几篇文章,但它们似乎与我想要实现的有所不同。

// Map to:
public class Product
{
public List<Image> Images { get; set; }
}

public class Image
{
public string url { get; set; }
}


// Map from:
public class ProductModel
{
public ImageSet ImageSet { get; set; }
}

public class ImageSet
{
public List<ImageDetail> ImageDetails { get; set; }
}

public class ImageDetail
{
public string Url { get; set; }
}

最佳答案

以下配置应该有效:

var config = new MapperConfiguration(cfg =>
{
cfg.CreateMap<ImageDetail, Image>();
cfg.CreateMap<ProductModel, Product>()
.ForMember(dest => dest.Images, opt => opt.MapFrom(src => src.ImageSet.ImageDetails))
;
});

关于c# - 使用 Automapper 映射对象列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42522229/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com