Exemplo n.º 1
0
        protected internal override Expression VisitPipeline(PipelineExpression node)
        {
            _accumulatorLookup = AccumulatorGatherer.Gather(node.Source).ToLookup(x => x.CorrelationId);

            return(base.VisitPipeline(node));
        }
Exemplo n.º 2
0
        protected internal override Expression VisitProjection(ProjectionExpression node)
        {
            _lookup = AccumulatorGatherer.Gather(node.Source).ToLookup(x => x.CorrelationId);

            return(base.VisitProjection(node));
        }