protected internal override Expression VisitPipeline(PipelineExpression node) { _accumulatorLookup = AccumulatorGatherer.Gather(node.Source).ToLookup(x => x.CorrelationId); return(base.VisitPipeline(node)); }
protected internal override Expression VisitProjection(ProjectionExpression node) { _lookup = AccumulatorGatherer.Gather(node.Source).ToLookup(x => x.CorrelationId); return(base.VisitProjection(node)); }