11 references to VariableName
System.Data.Entity (11)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
91result = CqtBuilder.GroupBindAs(newInput, binding.VariableName, binding.GroupVariableName);
System\Data\Common\CommandTrees\Internal\ExpressionDumper.cs (1)
117Begin("DbGroupExpressionBinding", "VariableName", binding.VariableName, "GroupVariableName", binding.GroupVariableName);
System\Data\Common\CommandTrees\Internal\ExpressionKeyGen.cs (1)
125VisitVariableName(groupBinding.VariableName);
System\Data\Common\CommandTrees\Internal\ExpressionPrinter.cs (1)
420retInfo.Text.AppendFormat(CultureInfo.InvariantCulture, "Input : '{0}', '{1}'", groupBinding.VariableName, groupBinding.GroupVariableName);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
779return VisitBoundExpressionPushBindingScope(binding.Expression, binding.VariableName);
System\Data\SqlClient\SqlGen\SqlGenerator.cs (6)
1420e.Input.VariableName, e.Input.VariableType, out fromSymbol); 1426innerQuery = CreateNewSelectStatement(innerQuery, e.Input.VariableName, e.Input.VariableType, out fromSymbol); 1432AddFromSymbol(innerQuery, e.Input.VariableName, fromSymbol); 1443bool needsInnerQuery = GroupByAggregatesNeedInnerQuery(e.Aggregates, e.Input.GroupVariableName) || GroupByKeysNeedInnerQuery(e.Keys, e.Input.VariableName); 1449result = CreateNewSelectStatement(innerQuery, e.Input.VariableName, e.Input.VariableType, false, out fromSymbol); 1450AddFromSymbol(result, e.Input.VariableName, fromSymbol, false);