gpt4 book ai didi

linq - 如何将 LINQ 查询结果转换为 List?

转载 作者:行者123 更新时间:2023-12-03 11:31:58 25 4
gpt4 key购买 nike

我需要将 linq 查询结果转换为列表。我尝试了以下代码:

var qry = from a in obj.tbCourses
select a;

List<course> lst = new List<course>();
lst = qry.ToList();

上述代码出现以下错误:
Cannot implicitly convert type 
System.Collections.Generic.List<Datalogiclayer.tbcourse> to
System.Collections.Generic.List<course>

最佳答案

没必要做那么多功课。。

var query = from c in obj.tbCourses
where ...
select c;

然后你可以使用:
List<course> list_course= query.ToList<course>();

这对我来说可以。

关于linq - 如何将 LINQ 查询结果转换为 List?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10333619/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com