43 references to Property
System.Data.Entity (43)
System\Data\Common\CommandTrees\DefaultExpressionVisitor.cs (1)
463
result = CqtBuilder.
Property
(newInstance, expression.Property.Name);
System\Data\Common\CommandTrees\ExpressionBuilder\DbExpressionBuilder.cs (5)
2232
DbExpression left = DbExpressionBuilder.
Property
(joinBinding.Variable, joinExpression.Left.VariableName);
2233
DbExpression right = DbExpressionBuilder.
Property
(joinBinding.Variable, joinExpression.Right.VariableName);
2402
return DbExpressionBuilder.Project(projectionBinding, DbExpressionBuilder.
Property
(projectionBinding.Variable, functorBinding.VariableName));
2447
DbExpression left = DbExpressionBuilder.
Property
(projectionBinding.Variable, inputBinding.VariableName);
2448
DbExpression right = DbExpressionBuilder.
Property
(projectionBinding.Variable, functorBinding.VariableName);
System\Data\Common\EntitySql\SemanticAnalyzer.cs (5)
3791
new KeyValuePair<string, DbExpression>(keyInfo.Name, groupBinding.Variable.
Property
(keyInfo.Name))));
3800
groupBinding.Variable.
Property
(groupAggregateInfo.AggregateName))));
3917
gpExpressionLambda.Invoke(groupBinding.Variable.
Property
(groupAggregateVarRef.VariableName))));
3931
groupBinding.Variable.
Property
(groupAggregateVarRef.VariableName)));
4742
return applyBinding.Project(applyBinding.Variable.
Property
(rightExpr.VariableName));
System\Data\Common\EntitySql\StaticContext.cs (3)
217
_varBasedExpression = _varBasedExpression.
Property
(_propRefs[i]);
305
_groupVarBasedExpression = _groupVarBasedExpression.
Property
(_propRefs[i]);
306
_groupAggBasedExpression = _groupAggBasedExpression.
Property
(_propRefs[i]);
System\Data\Mapping\FunctionImportMappingComposable.cs (1)
429
return row.
Property
(column.Name);
System\Data\Mapping\ViewGeneration\CqlGeneration\AliasedSlot.cs (1)
98
return m_block.GetInput(row).
Property
(GetCqlFieldAlias(outputMember));
System\Data\Mapping\ViewGeneration\CqlGeneration\CqlBlock.cs (2)
284
cqt = cqt.
Property
(m_parentQualifiers[i]);
286
return cqt.
Property
(m_leafQualifier);
System\Data\Mapping\ViewGeneration\Structures\CellIdBoolean.cs (1)
66
return row.
Property
(SlotName);
System\Data\Mapping\ViewGeneration\Structures\MemberPath.cs (1)
451
cqt = DbExpressionBuilder.
Property
(cqt, memberName);
System\Data\Mapping\ViewGeneration\Structures\TypeConstant.cs (2)
160
keyMemberOutputPaths.Select(km => row.
Property
(km.CqlFieldAlias)));
167
membersOutputPaths.Select(m => row.
Property
(m.CqlFieldAlias)));
System\Data\Mapping\ViewGeneration\Structures\WithStatement.cs (1)
99
m_toEndEntitySet.CreateRef(m_toEndEntityType, m_toEndEntityKeyMemberPaths.Select(keyMember => row.
Property
(keyMember.CqlFieldAlias))));
System\Data\Objects\ELinq\ExpressionConverter.cs (2)
865
input = input.
Property
(ExpressionConverter.GroupColumnName);
870
input = input.
Property
(ExpressionConverter.EntityCollectionElementsColumnName);
System\Data\Objects\ELinq\MethodCallTranslator.cs (12)
1635
DbPropertyExpression joinOuter = joinBinding.Variable.
Property
(outerBinding.VariableName);
1636
DbPropertyExpression joinInner = joinBinding.Variable.
Property
(innerBinding.VariableName);
2198
DbExpression projection = joinBinding.Variable.
Property
(rightBinding.VariableName);
2203
projection = DbExpressionBuilder.Case(new[] { projection.
Property
("sentinel").IsNull() }, new[] { defaultValue }, projection.
Property
("value"));
2538
var newApply = newInput.Variable.
Property
(lojRightInput.Name).BindAs(innerBindingName);
2768
CqtExpression selection = groupByBinding.Variable.
Property
(GroupColumnName);
2784
projectionTerms[0] = groupByBinding.Variable.
Property
(KeyColumnName);
2823
DbPropertyExpression keyExpression = topLevelProjectBinding.Variable.
Property
(KeyColumnName);
2824
DbPropertyExpression groupExpression = topLevelProjectBinding.Variable.
Property
(GroupColumnName);
2894
CqtExpression outerProperty = joinProjectBinding.Variable.
Property
(outerColumn);
2895
CqtExpression innerProperty = joinProjectBinding.Variable.
Property
(innerColumn);
System\Data\Objects\ELinq\Translator.cs (3)
295
propertyExpression = instance.
Property
(name);
320
propertyExpression = instance.
Property
(name);
343
propertyExpression = property.Instance.
Property
(ExpressionConverter.KeyColumnName);
System\Data\Objects\Internal\ObjectSpanRewriter.cs (1)
373
columnExpr = expression.
Property
(columnProp.Name);
System\Data\Query\PlanCompiler\CTreeGenerator.cs (1)
199
resultExpr = resultExpr.
Property
(propName);
System\Data\Query\PlanCompiler\ITreeGenerator.cs (1)
1227
rewritten = rewritten.
Property
(propertyExpression.Property.Name);