AutoMapper-一对多映射

Pilgerstorfer弗朗兹

将一个带有嵌套列表的源对象映射到多个目标对象时遇到问题由于项目限制,我只能改编部分代码。我正在使用AutoMapper 5.1。

/// no changes possible
namespace Source
{
    class Person
    {
        public string Name { get; set; }
        public List<Car> Cars { get; set; }

        public Person()
        {
            Cars = new List<Car>();
        }
    }

    class Car
    {
        public string NumberPlate { get; set; }
    }
}

/// no changes possible
namespace Destination
{
    class PersonCar
    {
        public string Name { get; set; }
        public string NumberPlate { get; set; }
    }
}

/// Demo Consolen Application
static void Main(string[] args)
{
    #region init data
    Person person = new Person();
    for (int i = 0; i < 10; i++)
    {
        person.Cars.Add(new Source.Car() { NumberPlate = "W-100" + i });
    }
    #endregion

    /// goal is to map from one person object o a list of PersonCars            
    Mapper.Initialize(
        cfg => cfg.CreateMap<Person, List<PersonCar>>()
            /// this part does not work - and currently I am stuck here
            .ForMember(p => 
            {
                List<PersonCar> personCars = new List<PersonCar>();

                foreach (Car car in p.Cars)
                {
                    PersonCar personCar = new PersonCar();
                    personCar.Name = p.Name;
                    personCar.NumberPlate = car.NumberPlate;
                    personCars.Add(personCar);
                }
                return personCars;
            })
    );

    // no changes possible
    List<PersonCar> result = Mapper.Map<Person, List<PersonCar>>(person);
}

}

现在,我坚持为这个问题定义适当的映射。尽管我在workt上做了一个(丑陋的!!)映射(那里的左代码是.. facepalm),但是我确信对于这个问题必须有一个简单的解决方案。

任何帮助,将不胜感激!

鹰艾拉基

您可以使用该.ConstructProjectionUsing方法,以提供所需实体的投影。

Mapper.Initialize(cfg => {
    cfg.CreateMap<Person, List<PersonCar>>()
        .ConstructProjectionUsing(
            p =>
                p.Cars.Select(c => new PersonCar { Name = p.Name, NumberPlate = c.NumberPlate })
                .ToList()
        );
});

本文收集自互联网,转载请注明来源。

如有侵权,请联系 [email protected] 删除。

编辑于
0

我来说两句

0 条评论
登录 后参与评论

相关文章