在以下代码中调用 EF 4.0 中的 SP:
public IQueryable<Employee> GetEmployeesByFollowup()
{
var results = from p in this.ObjectContext.SearchEmployeeFollowup()
select p;
foreach (Employee p in results)
{
p.DepaermentReference.Load();
}
return results.AsQueryable<Employee>();
}
For循环导致以下错误:
“查询的结果不能多次枚举。”} System.SystemException {System.InvalidOperationException}
似乎它在一段时间内工作正常。不明白为什么。