7 references to GroupVariableName
System.Data.Entity (7)
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)
127VisitVariableName(groupBinding.GroupVariableName);
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)
2487scope = new ExpressionBindingScope(_iqtCommand, e.Input.GroupVariableName, scope.ScopeVar);
System\Data\SqlClient\SqlGen\SqlGenerator.cs (2)
1434symbolTable.Add(e.Input.GroupVariableName, fromSymbol); 1443bool needsInnerQuery = GroupByAggregatesNeedInnerQuery(e.Aggregates, e.Input.GroupVariableName) || GroupByKeysNeedInnerQuery(e.Keys, e.Input.VariableName);