我的控制器带有followinf代码。 和
public ActionResult Index()
{
ViewData["ContractNumber"] = Mapper.Map<IList<Contract>, IList<ContractModel.contract>>(contractService.GetAll()).AsQueryable();
ViewData["ContractorName"] = Mapper.Map<IList<fContractor>, IList<ContractorModel.contractor>>(contractorService.GetAll()).AsQueryable();
ViewData["ServiceNameString"] = Mapper.Map<IList<fServiceDetail>, IList<ModelServiceDetail>>(serviceDetailsService.GetAll()).AsQueryable();
return View(ViewData);
}
映射器中的每个表都有500到1500条记录。
执行时,返回索引需要很长时间。
可以有人建议修复性能的代码。
答案 0 :(得分:0)
问题已修复。
问题是关于映射器和解析器扩展。