我有以下查询
var db = new Entities();
IQueryable<Tbl_RSCRegularSupply> qrySupp = (from cont in db.Tbl_RSC
where cont.ID == contractID
let RegSupp = new
{
RegSupply = from R in cont.Tbl_RSCSupplyPlan
select R.Tbl_RSCRegularSupply
}
select (Tbl_RSCRegularSupply)RegSupp.RegSupply);
return qrySupp.AsParallel().ToList();
但是在执行此创建以下异常之后。
无法将类型“System.Collections.Generic.IEnumerable`1”转换为类型“Tbl_RSCRegularSupply”。LINQ to Entities 仅支持转换实体数据模型基元类型。
List<Tbl_RSCRegularSupply>
从上面的查询中获取是否有一些好方法。