28 references to VariableType
System.Data.Entity (28)
System\Data\Common\CommandTrees\ExpressionBuilder\Internal\ArgumentValidation.cs (5)
458recordCols.Add(new KeyValuePair<string, TypeUsage>(input.VariableName, input.VariableType)); 459recordCols.Add(new KeyValuePair<string, TypeUsage>(apply.VariableName, apply.VariableType)); 501columns.Add(new KeyValuePair<string, TypeUsage>(input.VariableName, input.VariableType)); 548columns.Add(new KeyValuePair<string, TypeUsage>(left.VariableName, left.VariableType)); 549columns.Add(new KeyValuePair<string, TypeUsage>(right.VariableName, right.VariableType));
System\Data\Common\CommandTrees\Internal\ViewSimplifier.cs (1)
433if (!TypeSemantics.IsEntityType(discriminatorFilter.Input.VariableType) ||
System\Data\Objects\ELinq\MethodCallTranslator.cs (6)
1621new KeyValuePair<string, TypeUsage>(outerBinding.VariableName, outerBinding.VariableType), 1622new KeyValuePair<string, TypeUsage>(innerBinding.VariableName, innerBinding.VariableType) 2543new KeyValuePair<string, TypeUsage>(newInput.VariableName, newInput.VariableType), 2544new KeyValuePair<string, TypeUsage>(newApply.VariableName, newApply.VariableType) 2617if (crossApply.Input.VariableType.EdmType.BuiltInTypeKind != BuiltInTypeKind.RowType) 2621var crossApplyInputRowType = (RowType)crossApply.Input.VariableType.EdmType;
System\Data\SqlClient\SqlGen\SqlGenerator.cs (16)
2234SqlSelectStatement result = VisitInputExpression(e.Input.Expression, e.Input.VariableName, e.Input.VariableType, out fromSymbol); 2243result = CreateNewSelectStatement(result, e.Input.VariableName, e.Input.VariableType, out fromSymbol); 2462SqlSelectStatement input = VisitInputExpression(e.Input.Expression, e.Input.VariableName, e.Input.VariableType, out fromSymbol); 2467input = CreateNewSelectStatement(input, e.Input.VariableName, e.Input.VariableType, out fromSymbol); 2516JoinSymbol newJoinSymbol = new JoinSymbol(e.Input.VariableName, e.Input.VariableType, oldJoinSymbol.ExtentList); 2531resultFromSymbol = new Symbol(e.Input.VariableName, e.Input.VariableType, input.OutputColumns, false); 2563SqlSelectStatement result = VisitInputExpression(e.Input.Expression, e.Input.VariableName, e.Input.VariableType, out fromSymbol); 2569result = CreateNewSelectStatement(result, e.Input.VariableName, e.Input.VariableType, out fromSymbol); 3155JoinSymbol newJoinSymbol = new JoinSymbol(input.VariableName, input.VariableType, extents); 3174JoinSymbol newJoinSymbol = new JoinSymbol(input.VariableName, input.VariableType, oldJoinSymbol.ExtentList); 3185fromSymbol = new Symbol(input.VariableName, input.VariableType, sqlSelectStatement.OutputColumns, sqlSelectStatement.OutputColumnsRenamed); 3191fromSymbol = new Symbol(input.VariableName, input.VariableType, sqlSelectStatement.OutputColumns, sqlSelectStatement.OutputColumnsRenamed); 3208fromSymbol = new Symbol(input.VariableName, input.VariableType); 3232fromSymbol = new JoinSymbol(input.VariableName, input.VariableType, extents); 4153input.VariableName, input.VariableType, out fromSymbol); 4159result = CreateNewSelectStatement(result, input.VariableName, input.VariableType, out fromSymbol);