AutoMapper忽略子集合属性 [英] AutoMapper Ignore on child collection property

查看:181
本文介绍了AutoMapper忽略子集合属性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试映射具有子对象集合的相同类型的对象,并且发现应用于子对象上属性的Ignore()似乎很...忽略了!

I am trying to map object's of the same type which have a collection of child objects and am finding that Ignore() applied to properties on the child object seem to be umm... ignored!

这是一个演示该问题的单元测试.

Here's a unit test which demonstrates the problem.

class A
{
    public int Id { get; set; }
    public string Name { get; set; }
    public ICollection<B> Children { get; set; }
}

class B
{
    public int Id { get; set; }
    public string Name { get; set; }
}

[TestClass]
public class UnitTest1
{
    [TestInitialize()]
    public void Initialize()
    {
        Mapper.CreateMap<A, A>()
            .ForMember(dest => dest.Id, opt => opt.Ignore());

        Mapper.CreateMap<B, B>()
            .ForMember(dest => dest.Id, opt => opt.Ignore());
    }

    [TestMethod]
    public void TestMethod1()
    {
        A src = new A { Id = 0, Name = "Source", Children = new List<B> { new B { Id = 0, Name = "Child Src" } } };
        A dest = new A { Id = 1, Name = "Dest", Children = new List<B> { new B { Id = 11, Name = "Child Dest" } } };

        Mapper.Map(src, dest);

    }

在Map调用之后,A对象的Id属性仍为1,这与预期的一样,但是子B对象的Id属性从11更改为0.

After the Map call the A object's Id property is still 1, as expected, but child B object's Id property is changed from 11 to 0.

为什么?

推荐答案

AutoMapper 4.1.1中有几个错误.

There are several bugs in AutoMapper 4.1.1.

首先是关于UseDestinationValue: https://github.com/AutoMapper/AutoMapper/Issues/568

第二个关于嵌套集合: https://github.com/AutoMapper/AutoMapper/issues/934

Second is about nested collections: https://github.com/AutoMapper/AutoMapper/issues/934

令人恐惧!解决方法是直接映射您的B实例:

Horrifying! The workaround is to map your B instances directly:

Mapper.CreateMap<A, A>()
    .ForMember(dest => dest.Id, opt => opt.Ignore())
    .ForMember(dest => dest.Children, opt => opt.Ignore());

Mapper.CreateMap<B, B>()
    .ForMember(dest => dest.Id, opt => opt.Condition((ResolutionContext src) => false));

并添加其他映射调用:

Mapper.Map(src, dest);
Mapper.Map(src.Children.First(), dest.Children.First()); //example!!!

您可以循环调用Mapper.Map:

for (int i = 0; i < src.Children.Count; i++)
{
    var srcChild = src.Children[i];
    var destChild = dest.Children[i];

    Mapper.Map(srcChild, destChild);
}

这将使事情正常进行.

这篇关于AutoMapper忽略子集合属性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆