如何使用Automapper将集合映射到集合容器?

时间:2012-05-11 15:58:34

标签: c# automapper

我在尝试映射这两个类时遇到了一些麻烦(Control - > ControlVM)

    public class Control
    {
        public IEnumerable<FieldType> Fields { get; set; }

        public class FieldType
        {
            //Some properties
        }
    }


    public class ControlVM
    {
        public FieldList Fields { get; set; }

        public class FieldList
        {
            public IEnumerable<FieldType> Items { get; set; }
        }

        public class FieldType
        {
            //Properties I'd like to map from the original
        }
    }

我尝试使用opt.ResolveUsing(src => new { Items = src.Fields }),但显然AutoMapper无法解析匿名类型。还试图扩展ValueResolver,但也没有用。

注意:此VM稍后在WebApi中使用,JSON.NET需要围绕集合的包装器才能正确反序列化它。因此,删除包装器不是解决方案。

注2:我也在做Mapper.CreateMap<Control.FieldType, ControlVM.FieldType>(),所以问题不在那里。

1 个答案:

答案 0 :(得分:4)

这对我有用:

Mapper.CreateMap<Control.FieldType, ControlVM.FieldType>();

// Map between IEnumerable<Control.FieldType> and ControlVM.FieldList:
Mapper.CreateMap<IEnumerable<Control.FieldType>, ControlVM.FieldList>()
    .ForMember(dest => dest.Items, opt => opt.MapFrom(src => src));

Mapper.CreateMap<Control, ControlVM>();

更新:以下是另一种方式:

Mapper.CreateMap<ControlVM.FieldType, Control.FieldType>();
Mapper.CreateMap<ControlVM, Control>()
    .ForMember(dest => dest.Fields, opt => opt.MapFrom(src => src.Fields.Items));