代码的问题很可能出现在对数据库的413次调用(原始列表中的每项调用一次)中:
PropertyTwo = db.MyTable.Find(x.NavProperty.subcategoryID).Text
不要这样做,而是一次加载所有值并从内存中使用它们:
var distinctSubcategoryIds = lstDailySummary
.Select(x => x.NavProperty.subcategoryID)
.Distinct();
var dataForPropertyTwo = db.MyTable
.Where(x => distinctSubcategoryIds.Contains(x.Id))
.ToDictionary(x => x.Id, x => x.Text);
List<ExportExcel> lstExportedExcel = lstDailySummary.Select(x => new ExportExcel
{
PropertyOne = x.ACInfo.RegNumber,
PropertyTwo = dataForPropertyTwo[x.NavProperty.subcategoryID],
PropertyThree = x.NavProperty.text,
PropertyFour = (!string.IsNullOrWhiteSpace(x.Agcy.ToString())) ? x.codeAgcy.location : " ",
PropertyFive = x.EventLocation,
PropertySix = x.codeCounty.county,
PropSeven = x.Flight,
PropEight = x.FlightDay.ToString("MM/dd/yyyy HH:mm"),
PropNine = x.IncidentNumber,
PropTen = x.codeLocation.Location,
PropEleven = x.Summary,
PropTwelve = x.Total,
PropThirteen = x.ATime
}).ToList();