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