我有两个型号
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
那时需要在一个级别层次结构后停止引用循环
所以有人请帮帮我