4

我正在尝试将查询结果返回到 List 对象中,但是我通常使用的以下代码不起作用。对 Linq 来说还是比较新的,有人可以解释正确的语法/发生了什么吗?如果我将数据类型更改productTrainingvar...

List<AgentProductTraining> productTraining = new List<AgentProductTraining>();  

productTraining = from records in db.CourseToProduct
                  where records.CourseCode == course.CourseCode
                  select records;
4

1 回答 1

13

Select()并且Where()会返回IQueryable<T>,不会List<T>。您必须将其转换为List<T>- 实际执行查询(而不仅仅是准备它)。

您只需要ToList()在查询结束时调用。例如:

// There's no need to declare the variable separately...
List<AgentProductTraining> productTraining = (from records in db.CourseToProduct
                                              where records.CourseCode == course.CourseCode
                                              select records).ToList();

但是,当您所做的只是一个Where子句时,我个人不会使用查询表达式:

// Changed to var just for convenience - the type is still List<AgentProductTraining>
var productTraining = db.CourseToProduct
                        .Where(records => records.CourseCode == course.CourseCode)
                        .ToList();
于 2013-01-31T22:29:09.640 回答