示例#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));
        }
示例#2
0
 public virtual void VisitExistsSubselect(ExistsSubselectSyntax node)
 {
     DefaultVisit(node);
 }
示例#3
0
 public virtual TResult VisitExistsSubselect(ExistsSubselectSyntax node)
 {
     return(DefaultVisit(node));
 }