Exemple #1
0
 protected override System.Data.Entity.Core.Query.InternalTrees.Node VisitNestOp(
     NestBaseOp op,
     System.Data.Entity.Core.Query.InternalTrees.Node n)
 {
     this.AddReference((IEnumerable <Var>)op.Outputs);
     this.VisitChildren(n);
     return(n);
 }
        /// <summary>
        ///     NestOps
        ///     Common handling for all NestOps.
        /// </summary>
        /// <param name="op"> </param>
        /// <param name="n"> </param>
        /// <returns> </returns>
        protected override Node VisitNestOp(NestBaseOp op, Node n)
        {
            // Mark all vars as needed
            AddReference(op.Outputs);

            // visit children. Need to do some more actually - to indicate that all
            // vars from the children are really required.
            VisitChildren(n);
            return(n);
        }
Exemple #3
0
 protected override void VisitNestOp(NestBaseOp op, System.Data.Entity.Core.Query.InternalTrees.Node n)
 {
     throw new NotSupportedException();
 }
Exemple #4
0
 protected override void VisitNestOp(NestBaseOp op, Node n)
 {
     throw new NotSupportedException();
 }
 protected override void VisitNestOp(NestBaseOp op, Node n)
 {
     throw EntityUtil.NotSupported();
 }