Exemplo n.º 1
0
        private BoundExpression BindExistsSubselect(ExistsSubselectSyntax node)
        {
            // TODO: Ensure query has no ORDER BY unless TOP is also specified

            var boundQuery = BindSubquery(node.Query);

            // NOTE: Number of columns doesn't matter here

            return(new BoundExistsSubselect(boundQuery.Relation));
        }
Exemplo n.º 2
0
 public virtual void VisitExistsSubselect(ExistsSubselectSyntax node)
 {
     DefaultVisit(node);
 }
Exemplo n.º 3
0
 public virtual TResult VisitExistsSubselect(ExistsSubselectSyntax node)
 {
     return(DefaultVisit(node));
 }