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