问题 I have this code snippet running on LinqPad (C# program) with Automapper Nuget package 6.1.1 already included: void Main() { Mapper.Initialize(cfg => { cfg.CreateMap<Top, TopDto>().ReverseMap(); }); Mapper.AssertConfigurationIsValid(); var source = new TopDto { Id = 1, Name = "Charlie", Nicks = new List<string> { "Fernandez", "Others" } }; var destination = Mapper.Map<Top>(source); destination.Dump(); } // Define other methods and classes here public class Top { public Top() { Nicks = new