自动映射器在返回列表时返回 NULL



没有自动映射器的代码:

List<CountryDM> countryDMList = _countryRepo.GetCountry();
List<CountryVM> countryVMList = new List<CountryVM>();
foreach (CountryDM countryDM in countryDMList)
{
countryVMList.Add(CountryVM.ToViewModel(countryDM));
}
return countryVMList;

我使用自动映射器来完成上述任务。但它返回一个NULL列表。请参考以下代码:

List<CountryDM> countryDMList = _countryRepo.GetCountry();
Mapper.CreateMap<List<CountryDM>, List<CountryVM>>();
List<CountryVM> countryVMList = new List<CountryVM>();
return Mapper.Map<List<CountryVM>>(countryDMList);
public class CountryDM
{
public int ID { get; set; }
public string CountryCode { get; set; }
public string Description { get; set; }
}
public class CountryVM
{
public int ID { get; set; }
public string CountryCode { get; set; }
public string Description { get; set; }
}

您不需要定义列表之间的映射,只需在对象之间定义映射,AutoMapper 将知道如何推断:

Mapper.CreateMap<CountryDM, CountryVM>();

其余的保持不变

相关内容

  • 没有找到相关文章

最新更新