查找列表是否是连续的并且带有到今天的时间戳

发布于 2025-01-11 06:54:20 字数 763 浏览 0 评论 0原文

使用 Entity Framework Core 6,我有实体:

public class Node {
  public String Parameter { get; set; }
  public String Period { get; set; }
  public Decimal Value { get; set; }
  public DateTimeOffset Timestamp { get; set; }
}

周期值可以是:

M1 = 1 Minute
H1 = 1 Hour
D1 = 1 Day

对于每对(参数、周期),我需要查找是否有最新的 200 个值。

例如,我需要查找我是否有过去 200 天的温度:

Parameter = Temperature
Period = D1

我需要检查所有不满足此条件的对。我开始:

 var stored = _context.Nodes
  .GroupBy(x => new { x.Parameter, x.Period })
  .Select(x => new { 
     Parameter = x.Key.Parameter, 
     Period = x.Key.Period, 
     Count = x.Count() 
  });

这样我就可以计算出每对的数量。

但我不确定它们是否是连续的并到达今天。

Using Entity Framework Core 6 I have the entity:

public class Node {
  public String Parameter { get; set; }
  public String Period { get; set; }
  public Decimal Value { get; set; }
  public DateTimeOffset Timestamp { get; set; }
}

The Period value can be:

M1 = 1 Minute
H1 = 1 Hour
D1 = 1 Day

For each pair (Parameter, Period) I need to find if I have the most recent 200 values.

For example, I need to find if I have the temperature for the previous 200 days:

Parameter = Temperature
Period = D1

I need to check all the pairs that don't satisfy this condition. I started with:

 var stored = _context.Nodes
  .GroupBy(x => new { x.Parameter, x.Period })
  .Select(x => new { 
     Parameter = x.Key.Parameter, 
     Period = x.Key.Period, 
     Count = x.Count() 
  });

With this I have the count for each pair.

But I am not sure if they are sequential and reaching today.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文