11 references to Property
System.Data.Entity (11)
System\Data\Common\CommandTrees\BasicCommandTreeVisitor.cs (1)
27this.VisitExpression(setClause.Property);
System\Data\Common\CommandTrees\DbSetClause.cs (4)
69if (null != this.Property) 71dumper.Dump(this.Property, "Property"); 83if (null != this.Property) 85node.Children.Add(new TreeNode("Property", this.Property.Accept(visitor)));
System\Data\Mapping\Update\Internal\DynamicUpdateCommand.cs (2)
85if (((DbPropertyExpression)setClause.Property).Property.EdmEquals(member)) 188DbSetClause newClause = new DbSetClause(inputIdentifier.Value.Property, DbExpressionBuilder.Constant(value));
System\Data\SqlClient\SqlGen\DmlSqlGenerator.cs (4)
57setClause.Property.Accept(translator); 173setClause.Property.Accept(translator); 216translator.RegisterMemberValue(setClause.Property, setClause.Value); 244HashSet<EdmMember> columnsWithValues = new HashSet<EdmMember>(tree.SetClauses.Cast<DbSetClause>().Select(s => ((DbPropertyExpression)s.Property).Property));