我有两节课:
类别 - 国家 >> ID、姓名、列表
类 - 城市 >> ID、姓名、CountryID、Country
我有与上述类相同的 CountryViewModel 和 CityViewModel 类。
我在 Global.asax.cs 中写了以下内容:
AutoMapper.Mapper.CreateMap<Country,CountryViewModel>();
AutoMapper.Mapper.CreateMap<City,CityViewModel>();
从 datbabse 检索实体后,我正在触发以下行以将模型映射到视图模型。:
AutoMapper.Mapper.Map(country, System.Type.GetType("Country"), System.Type.GetType("CountryViewModel"));
这在上面的行中给出了“找不到对象引用”错误。