protected override SqlStatement VisitSelectInto(SelectIntoStatement statement) { // TODO: here we need to decompose the query and inject the INTO clause return(base.VisitSelectInto(statement)); }
protected override SqlStatement VisitSelectInto(SelectIntoStatement statement) { // TODO: here we need to decompose the query and inject the INTO clause return base.VisitSelectInto(statement); }
protected virtual SqlStatement VisitSelectInto(SelectIntoStatement statement) { return new SelectIntoStatement(statement.QueryExpression, statement.Reference); }
protected virtual SqlStatement VisitSelectInto(SelectIntoStatement statement) { return(new SelectIntoStatement(statement.QueryExpression, statement.Reference)); }