实体一对多高效查询
Posted dreamsails
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了实体一对多高效查询相关的知识,希望对你有一定的参考价值。
var head = db.Queryable<InspectionRecord>().Where(w => w.CheckNumber == checkNumber && w.InspectionUnitName == inspectionUnit).ToList();
foreach (var h in head)
{
h.IllegalVarieties = db.Queryable<IllegalVarieties>().Where(w => h.Id == w.InspRecId).ToList();
}
res.Data = head;
以上是关于实体一对多高效查询的主要内容,如果未能解决你的问题,请参考以下文章