AutoMapper无法映射简单列表

时间:2011-05-12 08:20:29

标签: automapper

我过去曾使用automapper映射列表,因为某些原因它在这种情况下不起作用。

     public class MyType1 {
            public int Id { get; set; }
            public string Description { get; set; }
        }


        public class MyType2 {
            public int Id { get; set; }
            public string Description { get; set; }
        }

     public void DoTheMap() {
                Mapper.CreateMap<MyType2, MyType1>();
                Mapper.AssertConfigurationIsValid();

                var theDto1 = new MyType2() { Id = 1, Description = "desc" };
                var theDto2 = new MyType2() { Id = 2, Description = "desc2" };
                List<MyType2> type2List = new List<MyType2> { theDto1, theDto2 };

                List<MyType1> type1List = Mapper.DynamicMap<List<MyType1>>(type2List);
    //FAILURE.  NO EXCEPTION, BUT ZERO VALUES

                List<MyType1> type1List2 =type2List.Select(Mapper.DynamicMap<MyType1>).ToList();
   //SUCCESS, WITH LINQ SELECT
        }

1 个答案:

答案 0 :(得分:4)

改变这个:

Mapper.DynamicMap<List<MyType1>>(type2List)

对此:

Mapper.Map<List<MyType1>, List<MyType2>>(type2List);

DynamicMap只有在编译时不知道类型时才会出现 - 例如匿名类型。