2 instantiations of PropertyRefElement
System.Data.Entity (2)
System\Data\EntityModel\SchemaObjectModel\EntityKeyElement.cs (1)
73PropertyRefElement property = new PropertyRefElement((SchemaEntityType)ParentElement);
System\Data\EntityModel\SchemaObjectModel\ReferentialConstraintRoleElement.cs (1)
87PropertyRefElement property = new PropertyRefElement(ParentElement);
19 references to PropertyRefElement
System.Data.Entity (19)
System\Data\EntityModel\SchemaObjectModel\EntityKeyElement.cs (8)
24private List<PropertyRefElement> _keyProperties; 35public IList<PropertyRefElement> KeyProperties 41_keyProperties = new List<PropertyRefElement>(); 73PropertyRefElement property = new PropertyRefElement((SchemaEntityType)ParentElement); 84foreach (PropertyRefElement property in _keyProperties) 99Dictionary<string, PropertyRefElement> propertyLookUp = new Dictionary<string, PropertyRefElement>(StringComparer.Ordinal); 101foreach (PropertyRefElement keyProperty in _keyProperties)
System\Data\EntityModel\SchemaObjectModel\ItemType.cs (4)
27private static List<PropertyRefElement> EmptyKeyProperties = new List<PropertyRefElement>(0); 119public IList<PropertyRefElement> DeclaredKeyProperties 135public IList<PropertyRefElement> KeyProperties
System\Data\EntityModel\SchemaObjectModel\ReferentialConstraint.cs (1)
227foreach(PropertyRefElement propRef in role.RoleProperties)
System\Data\EntityModel\SchemaObjectModel\ReferentialConstraintRoleElement.cs (5)
23private List<PropertyRefElement> _roleProperties; 35public IList<PropertyRefElement> RoleProperties 41_roleProperties = new List<PropertyRefElement>(); 87PropertyRefElement property = new PropertyRefElement(ParentElement); 132foreach (PropertyRefElement property in _roleProperties)
System\Data\Metadata\Converter.cs (1)
576private static EdmProperty[] GetProperties(EntityTypeBase entityType, IList<Som.PropertyRefElement> properties)