var records = studyRecords.GroupBy(x => x.StudyTime.Date).Select(y => new
            {
                date = y.Key,
                seconds = y.Sum(x => x.StudySeconds)
            });

 

阿里云优惠活动

相关文章:

  • 2021-11-15
  • 2022-12-23
  • 2021-11-20
  • 2021-09-17
  • 2021-12-25
  • 2022-12-23
  • 2021-08-10
  • 2021-10-01
猜你喜欢
  • 2022-12-23
  • 2022-01-01
  • 2022-12-23
  • 2021-07-28
  • 2021-12-10
  • 2022-01-13
相关资源
相似解决方案