在 StreamInsight 中,许多示例解决了流的 count、sum、filter 的 linq 用法。
var cepStream = enumerable.ToPointStream(application, e => PointEvent<Car>.CreateInsert(new DateTimeOffset(e.TimeStamp, TimeSpan.Zero), e), AdvanceTimeSettings.IncreasingStartTime);
var step1 = from e in cepStream
where e.Color == "RedCar"
select e;
定义提取在一定时间长度内发生的记录的查询有一些困难。例如step1存储的是“RedCar”的积分事件,但是如何提取10分钟内连续发生的两个“RedCar”事件呢?
真的被困在这里,非常感谢任何帮助!