需要使用自动映射器MAXDepth停止模型的引用循环

时间:2018-03-24 09:03:24

标签: c# entity-framework automapper

我有两个型号

Public class LocationMasterModel()
{

 Public int LocationId{get;set;}
 Public int OtherAddressId{get;set;}

 Public OtherAddress OtherAddress{get;set;}

}

 Public class OtherAddress()
{

  Public int OtherAddressId{get;set;}
  Public int LocationId{get;set;}
  Public LocationMasterModel LocationMaster{get;set;}

 }

Automapper

 Mapper.CreateMap<LocationMasterModel, LocationMasterViewModel>();

LocationMasterViewModel是另一个用于查看目的的类。

所以当我试图从存储库获取位置并尝试从LocationMasterModel转换为LocationMasterViewModel

那时

需要在一个级别层次结构后停止引用循环

所以有人请帮帮我

0 个答案:

没有答案