我正在尝试将查询结果返回到 List 对象中,但是我通常使用的以下代码不起作用。对 Linq 来说还是比较新的,有人可以解释正确的语法/发生了什么吗?如果我将数据类型更改productTraining
为var
...
List<AgentProductTraining> productTraining = new List<AgentProductTraining>();
productTraining = from records in db.CourseToProduct
where records.CourseCode == course.CourseCode
select records;