Remotion.Linq.SqlBackend.SqlPreparation.SqlPreparationExpressionVisitor.VisitSubQueryExpression C# (CSharp) Method

VisitSubQueryExpression() protected method

protected VisitSubQueryExpression ( Remotion.Linq.Clauses.Expressions.SubQueryExpression expression ) : Expression
expression Remotion.Linq.Clauses.Expressions.SubQueryExpression
return System.Linq.Expressions.Expression
    protected override Expression VisitSubQueryExpression (SubQueryExpression expression)
    {
      ArgumentUtility.CheckNotNull ("expression", expression);

      var newExpression = _stage.PrepareSqlStatement (expression.QueryModel, _context).CreateExpression();

      return VisitExpression (newExpression);
    }