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