6 instantiations of SqlSelectStatement
System.Data.Entity (6)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (6)
1256SqlSelectStatement result = new SqlSelectStatement(); 2500SqlSelectStatement result = new SqlSelectStatement(); 2851result = new SqlSelectStatement(); 3026result = new SqlSelectStatement(); 3346SqlSelectStatement selectStatement = new SqlSelectStatement(); 3785SqlSelectStatement selectStatement = new SqlSelectStatement();
58 references to SqlSelectStatement
System.Data.Entity (58)
System\Data\SqlClient\SqlGen\JoinSymbol.cs (1)
30/// correctly in <see cref="SqlSelectStatement.WriteSql"/></item>
System\Data\SqlClient\SqlGen\SqlGenerator.cs (56)
216private Stack<SqlSelectStatement> selectStatementStack; 221private SqlSelectStatement CurrentSelectStatement 513selectStatementStack = new Stack<SqlSelectStatement>(); 524SqlSelectStatement sqlStatement = VisitExpressionEnsureSqlStatement(targetTree.Query); 589/// <returns>A <see cref="SqlSelectStatement"/>.</returns> 1176/// <returns>A <see cref="SqlSelectStatement"/></returns> 1179SqlSelectStatement result = VisitExpressionEnsureSqlStatement(e.Argument); 1238/// with the extent name, otherwise, a new <see cref="SqlSelectStatement"/> 1256SqlSelectStatement result = new SqlSelectStatement(); 1320/// <returns>A <see cref="SqlSelectStatement"/></returns> 1415/// <returns>A <see cref="SqlSelectStatement"/></returns> 1419SqlSelectStatement innerQuery = VisitInputExpression(e.Input.Expression, 1445SqlSelectStatement result; 1613/// <returns>A <see cref="SqlSelectStatement"/>.</returns> 1623/// <returns>A <see cref="SqlSelectStatement"/>.</returns> 1695SqlSelectStatement result = VisitExpressionEnsureSqlStatement(e.Argument, false, false); 2229/// <returns>A <see cref="SqlSelectStatement"/></returns> 2234SqlSelectStatement result = VisitInputExpression(e.Input.Expression, e.Input.VariableName, e.Input.VariableType, out fromSymbol); 2410SqlSelectStatement filter = VisitFilterExpression(e.Input, e.Predicate, negatePredicate); 2462SqlSelectStatement input = VisitInputExpression(e.Input.Expression, e.Input.VariableName, e.Input.VariableType, out fromSymbol); 2500SqlSelectStatement result = new SqlSelectStatement(); 2558/// <returns>A <see cref="SqlSelectStatement"/></returns> 2563SqlSelectStatement result = VisitInputExpression(e.Input.Expression, e.Input.VariableName, e.Input.VariableType, out fromSymbol); 2840/// <returns>A <see cref="SqlSelectStatement"/> and the main fromSymbol 2842private SqlSelectStatement VisitInputExpression(DbExpression inputExpression, 2845SqlSelectStatement result; 2847result = sqlFragment as SqlSelectStatement; 2918SqlSelectStatement result = VisitExpressionEnsureSqlStatement(elementExpr.Argument); 3016/// <returns> A <see cref="SqlSelectStatement"/></returns> 3020SqlSelectStatement result; 3134private void ProcessJoinInputResult(ISqlFragment fromExtentFragment, SqlSelectStatement result, 3144SqlSelectStatement sqlSelectStatement = fromExtentFragment as SqlSelectStatement; 3322SqlSelectStatement leftSelectStatement = VisitExpressionEnsureSqlStatement(left, true, true); 3323SqlSelectStatement rightSelectStatement = VisitExpressionEnsureSqlStatement(right, true, true); 3346SqlSelectStatement selectStatement = new SqlSelectStatement(); 3391private void AddColumns(SqlSelectStatement selectStatement, Symbol symbol, 3520private void AddColumn(SqlSelectStatement selectStatement, Symbol symbol, 3595private List<Symbol> AddDefaultColumns(SqlSelectStatement selectStatement) 3615/// <see cref="AddFromSymbol(SqlSelectStatement, string, Symbol, bool)"/> 3620private void AddFromSymbol(SqlSelectStatement selectStatement, string inputVarName, Symbol fromSymbol) 3660private void AddFromSymbol(SqlSelectStatement selectStatement, string inputVarName, Symbol fromSymbol, bool addToSymbolTable) 3712/// <see cref="CreateNewSelectStatement(SqlSelectStatement, string, TypeUsage, bool, out Symbol)"/> 3719private SqlSelectStatement CreateNewSelectStatement(SqlSelectStatement oldStatement, 3746private SqlSelectStatement CreateNewSelectStatement(SqlSelectStatement oldStatement, 3785SqlSelectStatement selectStatement = new SqlSelectStatement(); 3970private static bool IsCompatible(SqlSelectStatement result, DbExpressionKind expressionKind) 4050private SqlSelectStatement VisitExpressionEnsureSqlStatement(DbExpression e) 4078private SqlSelectStatement VisitExpressionEnsureSqlStatement(DbExpression e, bool addDefaultColumns, bool markAllDefaultColumnsAsUsed) 4082SqlSelectStatement result; 4089result = e.Accept(this) as SqlSelectStatement; 4149private SqlSelectStatement VisitFilterExpression(DbExpressionBinding input, DbExpression predicate, bool negatePredicate) 4152SqlSelectStatement result = VisitInputExpression(input.Expression, 4196private static void WrapNonQueryExtent(SqlSelectStatement result, ISqlFragment sqlFragment, DbExpressionKind expressionKind)
System\Data\SqlClient\SqlGen\Symbol.cs (1)
35/// This allows <see cref="SqlGenerator.AddFromSymbol(SqlSelectStatement, string, Symbol, bool)"/> to add the column list