2 writes to OutputColumns
System.Data.Entity (2)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (2)
2268result.OutputColumns = newColumns; 3477selectStatement.OutputColumns = new Dictionary<string, Symbol>();
8 references to OutputColumns
System.Data.Entity (8)
System\Data\SqlClient\SqlGen\SqlGenerator.cs (8)
2531resultFromSymbol = new Symbol(e.Input.VariableName, e.Input.VariableType, input.OutputColumns, false); 3185fromSymbol = new Symbol(input.VariableName, input.VariableType, sqlSelectStatement.OutputColumns, sqlSelectStatement.OutputColumnsRenamed); 3191fromSymbol = new Symbol(input.VariableName, input.VariableType, sqlSelectStatement.OutputColumns, sqlSelectStatement.OutputColumnsRenamed); 3352Symbol fromSymbol = new Symbol("X", TypeHelpers.GetElementTypeUsage(left.ResultType), leftSelectStatement.OutputColumns, true); 3475if (selectStatement.OutputColumns == null) 3562if (!selectStatement.OutputColumns.ContainsKey(columnName)) 3564selectStatement.OutputColumns.Add(columnName, columnSymbol); 3781fromSymbol = new Symbol(inputVarName, inputVarType, oldStatement.OutputColumns, oldStatement.OutputColumnsRenamed);