상속: SingleQueryPlanNode
예제 #1
0
 public void SetCachePoint()
 {
     if (!(Plan is CachePointNode))
     {
         Plan = new CachePointNode(Plan);
     }
 }
예제 #2
0
        protected virtual IQueryPlanNode VisitCachePoint(CachePointNode node)
        {
            var child = node.Child;
            if (child != null)
                child = VisitNode(child);

            return new CachePointNode(child);
        }
예제 #3
0
        protected virtual IQueryPlanNode VisitCachePoint(CachePointNode node)
        {
            var child = node.Child;

            if (child != null)
            {
                child = VisitNode(child);
            }

            return(new CachePointNode(child));
        }
예제 #4
0
 public void SetCachePoint()
 {
     if (!(Plan is CachePointNode))
         Plan = new CachePointNode(Plan);
 }