LINQ to Entities 查询中无法构造实体或复杂类型
初学asp.net 代码出现LINQ to Entities 查询中无法构造实体或复杂类型提示,看了论坛里已有的类似问题,好像是说类型太多,但我这里非常简单,不知道为什么也出这个问题,求解!谢谢!
public IList<School> All()
{
var query = from c in OD.Schools
select new School
{
ID = c.ID,
FName = c.FName,
SName = c.SName
};
return query.ToList();
}
ToList直接跟在linq里也出同样的错.同cs下的其他不select nwe school的就没事.如下
public IList<School> GetSchoolByBelongTo(int belongTo)
{
var query = from c in OD.Schools
where c.BelongTo == belongTo
select c;
return query.ToList();
}
------解决方案--------------------重新定义一个Model类,名字叫MSchool
不要使用映射的实体作为返回值类型
public class MSchool
{
..//字段
}
public IList<MSchool> All()
{
var query = from c in OD.Schools
select new MSchool
{
ID = c.ID,
FName = c.FName,
SName = c.SName
};
return query.ToList();
}