gpt4 book ai didi

c# - Linq to SQL 简单 SUM

转载 作者:太空宇宙 更新时间:2023-11-03 18:40:45 25 4
gpt4 key购买 nike

friend 建议我使用以下代码

var tmp = from allCourses in _db.tblCourseNeededHours orderby allCourses.tblCourse.CourseName where allCourses.Semester == semester select allCourses;

返回 tmp.Sum(x => x.NeededHoursPerWeek);

但是我收到这个错误

无法将类型“double”隐式转换为“System.Linq.IQueryable”

知道如何解决吗?

enter image description here

公共(public) IQueryable FindSumAllCourseNeededHoursInSemester(字符串学期)

最佳答案

这个怎么样:

var sum = FindAllCourseNeededHoursInSemester(mySemester).Sum(course => course.NeededHours)

这篇 MSDN 文章很好地介绍了一些常见的 LINQ 任务:

http://code.msdn.microsoft.com/windowsdesktop/101-LINQ-Samples-3fb9811b

关于c# - Linq to SQL 简单 SUM,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9264541/

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