我有一个通用的存储库和一个方法
public List<employee> List()
{
return _dbContext.Set<employee>().Where(x => x.Status == "Active")ToList();
}
如果我有2000条记录,这个电话需要2到5分钟
如果我直接在存储库中使用EF,那么它的工作速度非常快
var p = from emp in context.Inboxes where employee.Status == "Active" select employee;
如何提高存储库集合的性能?