88 references to VariableName
System.Data.Entity (88)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
71result = CqtBuilder.BindAs(newInput, binding.VariableName);
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (5)
2232DbExpression left = DbExpressionBuilder.Property(joinBinding.Variable, joinExpression.Left.VariableName); 2233DbExpression right = DbExpressionBuilder.Property(joinBinding.Variable, joinExpression.Right.VariableName); 2402return DbExpressionBuilder.Project(projectionBinding, DbExpressionBuilder.Property(projectionBinding.Variable, functorBinding.VariableName)); 2447DbExpression left = DbExpressionBuilder.Property(projectionBinding.Variable, inputBinding.VariableName); 2448DbExpression right = DbExpressionBuilder.Property(projectionBinding.Variable, functorBinding.VariableName);
System\Data\Common\CommandTrees\ExpressionBuilder\Internal\ArgumentValidation.cs (12)
449if (input.VariableName.Equals(apply.VariableName, StringComparison.Ordinal)) 458recordCols.Add(new KeyValuePair<string, TypeUsage>(input.VariableName, input.VariableType)); 459recordCols.Add(new KeyValuePair<string, TypeUsage>(apply.VariableName, apply.VariableType)); 493if (bindingNames.TryGetValue(input.VariableName, out nameIndex)) 495throw EntityUtil.Argument(System.Data.Entity.Strings.Cqt_CrossJoin_DuplicateVariableNames(nameIndex, iPos, input.VariableName)); 499bindingNames.Add(input.VariableName, iPos); 501columns.Add(new KeyValuePair<string, TypeUsage>(input.VariableName, input.VariableType)); 534if (left.VariableName.Equals(right.VariableName, StringComparison.Ordinal)) 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\ExpressionDumper.cs (1)
91Begin("DbExpressionBinding", "VariableName", binding.VariableName);
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
116VisitVariableName(binding.VariableName);
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
254return this.VisitWithLabel(propName, binding.VariableName, binding.Expression);
System\Data\Common\CommandTrees\Internal\ViewSimplifier.cs (7)
424((DbVariableReferenceExpression)px.Instance).VariableName == booleanColumnFilter.Input.VariableName).ToList(); 466if(!TryMatchPropertyEqualsValue(casePredicate.When[0], rowProjection.Input.VariableName, out comparedProp, out constValue) || 502DbExpression inputBoundEntityConstructor = ValueSubstituter.Substitute(entityThen, entityProjection.Input.VariableName, columnValues); 506DbExpression newElse = ValueSubstituter.Substitute(entitySelector.Else, entityProjection.Input.VariableName, columnValues); 509DbExpression result = discriminatorFilter.BindAs(rowProjection.Input.VariableName).Project(newEntitySelector); 749return varRef.VariableName == m_outerBinding.VariableName; 781if (!TryMatchPropertyEqualsValue(term, filter.Input.VariableName, out currentDiscriminator, out discriminatorValue))
System\Data\Common\EntitySql\SemanticAnalyzer.cs (1)
4742return applyBinding.Project(applyBinding.Variable.Property(rightExpr.VariableName));
System\Data\Mapping\ViewGeneration\CqlGeneration\JoinCqlBlock.cs (3)
126leftmostBlock.SetJoinTreeContext(joinTreeCtxParentQualifiers, join.Left.VariableName); 132joinTreeCtxParentQualifiers.Add(join.Left.VariableName); 136rightBlock.SetJoinTreeContext(joinTreeCtxParentQualifiers, join.Right.VariableName);
System\Data\Mapping\ViewGeneration\DiscriminatorMap.cs (1)
108var projectionVariableName = project.Input.VariableName;
System\Data\Mapping\ViewValidator.cs (1)
298this.variableScopes.Push(new KeyValuePair<string, DbExpressionEntitySetInfo>(binding.VariableName, info));
System\Data\Objects\ELinq\ExpressionConverter.cs (1)
492((DbVariableReferenceExpression)projection).VariableName.Equals(input.VariableName, StringComparison.Ordinal))
System\Data\Objects\ELinq\MethodCallTranslator.cs (8)
1621new KeyValuePair<string, TypeUsage>(outerBinding.VariableName, outerBinding.VariableType), 1622new KeyValuePair<string, TypeUsage>(innerBinding.VariableName, innerBinding.VariableType) 1635DbPropertyExpression joinOuter = joinBinding.Variable.Property(outerBinding.VariableName); 1636DbPropertyExpression joinInner = joinBinding.Variable.Property(innerBinding.VariableName); 2198DbExpression projection = joinBinding.Variable.Property(rightBinding.VariableName); 2543new KeyValuePair<string, TypeUsage>(newInput.VariableName, newInput.VariableType), 2544new KeyValuePair<string, TypeUsage>(newApply.VariableName, newApply.VariableType) 2649rightProjectProjection.Property.Name != loj.Right.VariableName ||
System\Data\Objects\ELinq\OrderByLifter.cs (6)
258DbExpressionBinding inputBinding = input.BindAs(project.Input.VariableName); 264DbExpressionBinding inputBinding = input.BindAs(filter.Input.VariableName); 270DbExpressionBinding inputBinding = input.BindAs(sort.Input.VariableName); 276DbExpressionBinding inputBinding = input.BindAs(sortSpec.Input.VariableName); 282DbExpressionBinding inputBinding = input.BindAs(sort.Input.VariableName); 288DbExpressionBinding inputBinding = input.BindAs(skip.Input.VariableName);
System\Data\Objects\Internal\ObjectSpanRewriter.cs (6)
500result = target.BindAs(project.Input.VariableName).Project(newProjection); 820return found.BindAs(expression.Input.VariableName).Filter(expression.Predicate); 842if (varRef.VariableName.Equals(expression.Input.VariableName, StringComparison.Ordinal)) 847return found.BindAs(expression.Input.VariableName).Project(expression.Projection); 860return found.BindAs(expression.Input.VariableName).Sort(expression.SortOrder); 873return found.BindAs(expression.Input.VariableName).Skip(expression.SortOrder, expression.Count);
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
230get { return _binding.VariableName; }
System\Data\Query\PlanCompiler\ITreeGenerator.cs (6)
768return VisitBoundExpressionPushBindingScope(binding.Expression, binding.VariableName); 1883((DbVariableReferenceExpression)isOfArgument).VariableName == filter.Input.VariableName); 1926result = rewritten.BindAs(filter.Input.VariableName).Filter(filter.Predicate); 1950((DbVariableReferenceExpression)project.Projection).VariableName == project.Input.VariableName) 1968result = sortInput.BindAs(sort.Input.VariableName).Sort(sort.SortOrder); 2314PushBindingScope(inputVars[scopeCount], inputs[scopeCount].VariableName);
System\Data\SqlClient\SqlGen\Sql8ExpressionRewriter.cs (3)
147DbExpression exceptExpression = TransformIntersectOrExcept(leftInput, rightInput, DbExpressionKind.Skip, sortExpressions, e.Input.VariableName); 149DbExpression result = exceptExpression.BindAs(e.Input.VariableName).Sort(sortOrder); 228if (RemoveNonSortProperties(leftFlattenedProperties, rightFlattenedProperties, sortExpressionsOverLeft, leftInputBinding.VariableName, sortExpressionsBindingVariableName))
System\Data\SqlClient\SqlGen\SqlGenerator.cs (23)
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); 2253AddFromSymbol(result, e.Input.VariableName, 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); 2473AddFromSymbol(input, e.Input.VariableName, 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); 2537AddFromSymbol(result, e.Input.VariableName, resultFromSymbol); 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); 2575AddFromSymbol(result, e.Input.VariableName, 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); 3212AddFromSymbol(result, input.VariableName, fromSymbol); 3232fromSymbol = new JoinSymbol(input.VariableName, input.VariableType, extents); 3240symbolTable.Add(input.VariableName, fromSymbol); 4153input.VariableName, input.VariableType, out fromSymbol); 4159result = CreateNewSelectStatement(result, input.VariableName, input.VariableType, out fromSymbol); 4165AddFromSymbol(result, input.VariableName, fromSymbol);