这是我得到的代码.
public class testbase
{
private testEntities db = new testEntities();
public IQueryable<post> GetRecords()
{
return db.record;
}
}
这里的记录是我数据库中的一个表,它应该返回表中的所有行.我那里只有一行,当我执行db.record.Count()时,我得到1.
但是,当我尝试自行检索行时,出现“函数评估超时”的情况.
发生了什么?有人有想法吗?
最佳答案
原文链接:https://www.f2er.com/mysql/531984.html