Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的表包含“小时”字段。我的表中有多条记录。我想获取除第一条记录之外的所有“小时”字段的总数。我如何获得除第一条记录之外的所有记录的总和?
您可以在 Linq 中使用 Skip() 方法。
var totalHours = dataContext.TimeZones.Skip(1).Sum(x=>x.Hours);