public void Dump(PlanDumperContext context)
        {
            context.WriteHeader(this);

            using (var childContext = context.Push())
            {
                Input.Dump(childContext);
            }
        }
Beispiel #2
0
        public void Dump(PlanDumperContext context)
        {
            context.WriteHeader(this);

            using (var childContext = context.Push())
            {
                foreach (var child in modelWorkers)
                {
                    child.Dump(childContext);
                }

                foreach (var child in mapWorkers)
                {
                    child.Dump(childContext);
                }
            }
        }
Beispiel #3
0
        public void Dump(PlanDumperContext context)
        {
            context.WriteHeader(this, "{0}: {1}", Id, Name);

            using (var childContext = context.Push())
            {
                foreach (var child in mergers)
                {
                    child.Dump(childContext);
                }

                foreach (var child in updaters)
                {
                    child.Dump(childContext);
                }
            }
        }