自引用循环导致堆栈溢出与映射

时间:2017-07-20 12:38:51

标签: c# entity-framework automapper automapper-6

根据文档,AutoDesper应尽可能自动设置PreserveReferences。

  

从6.1.0开始PreserveReferences在config处自动设置   时间尽可能。

https://github.com/AutoMapper/AutoMapper/wiki/5.0-Upgrade-Guide

我也尝试将MaxDepth设置为1,但我仍然会通过以下映射获得堆栈溢出异常。我可以以某种方式解决这个问题,还是需要修改视图模型?

cfg.CreateMap<ArticleViewModel, Article>(MemberList.Source)
    .MaxDepth(1)
    .EqualityComparison((src, dst) => src.Id == dst.Id);

导致堆栈溢出异常的代码:

var article = await iArticleRepository.GetAsync(id);
//The mapping below causes the exception
var mappedArticle = Mapper.Map<ArticleViewModel>(article);

实体:

public class Article: IEntity<int>
{
    [Key]
    public int Id { get; set; }

    ...

    public int SupplierId { get; set; }

    public virtual Supplier Supplier { get; set; }
}

public class Supplier: IEntity<int>
{
    [Key]
    public int Id { get; set; }

    ...

    public virtual ICollection<Contact> Contacts { get; set; }
}

public class Contact: IEntity<int>
{
    [Key]
    public int Id { get; set; }

    ...
    public virtual ICollection<Supplier> Suppliers { get; set; }
}

查看模型:

public class ArticleViewModel
{
    public int Id { get; set; }

    ...
    public SupplierViewModel Supplier { get; set; }

}

public class SupplierViewModel
{
    public int Id { get; set; }

    ...
    public List<ContactViewModel> Contacts { get; set; }

}

public class ContactViewModel
{
    public int Id { get; set; }
    ... 
    public List<SupplierViewModel> Suppliers { get; set; }
}

2 个答案:

答案 0 :(得分:3)

嗯,目前还不清楚什么是可能的意味着什么。由于之前的文档说明

  

事实证明这种跟踪非常昂贵,您需要选择使用PreserveReferences来制作圆形地图

看起来您的方案无法进入不可能的类别:)

不要依赖它并使用明确的选择加入。此示例模型中的循环引用位于SupplierContact之间,因此您必须在其中一个涉及的类映射中指定,例如:

cfg.CreateMap<ArticleViewModel, Article>(MemberList.Source)
    .MaxDepth(1)
    .EqualityComparison((src, dst) => src.Id == dst.Id);

cfg.CreateMap<SupplierViewModel, Supplier>(MemberList.Source)
    .PreserveReferences()
    .EqualityComparison((src, dst) => src.Id == dst.Id);

答案 1 :(得分:0)

这应该在下一个MyGet构建中修复。