for (DateTime i = beforedate; i >= beforedate && i <= enddate; i = i.AddDays(1))
                {
                    var list = (from a in context.account
                                where a.deviceid == deviceid && EntityFunctions.DiffDays(a.tradetime, i) == 0
                                select a).ToList();
                    countList.Add(list.Count());
                }

相关文章:

  • 2021-07-04
  • 2022-01-21
  • 2022-02-08
  • 2022-12-23
  • 2021-08-04
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
  • 2022-01-29
  • 2021-08-10
  • 2021-11-12
  • 2022-01-16
相关资源
相似解决方案