https://www.jianshu.com/p/419a3b7f12d5 列表和数组(Lists and Arrays) AutoMapper只需要配置元素类型的映射配置,不需要针对列表和数组进行配置.举个例子,我们可能有以下源类型和目标类类型: public class Source { public int Value { get; set; } } public class Destination { public int Value { get; set; } } 所有的基础泛型集合…
9.集合和数组映射 在项目中,集合和数组使用的很多的,继续下来就讲讲他们的映射,很简单. /// <summary> /// 源对象 /// </summary> public class Source { public int Value { get; set; } public string Text { get; set; } } /// <summary> /// 目标对象 /// </summary> public class Destinatio…
using AutoMapper; using Newtonsoft.Json; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace ConsoleApp2.test1 { public class Class7 { //原文:https://www.cnblogs.com/mushroom/p/4…