39 references to EdmProperty
System.Data.Entity (39)
System\Data\Mapping\BaseMetadataMappingVisitor.cs (3)
390Visit(storageComplexPropertyMapping.EdmProperty); 399Visit(storageConditionPropertyMapping.EdmProperty); 404Visit(storageScalarPropertyMapping.EdmProperty);
System\Data\Mapping\FunctionImportMappingComposable.cs (4)
366Debug.Assert(properties[i].EdmEquals(propertyMapping.EdmProperty), "properties[i].EdmEquals(propertyMapping.EdmProperty)"); 367var propertyMappingView = GeneratePropertyMappingView(propertyMapping, row, new List<string>() { propertyMapping.EdmProperty.Name }, errors); 394Debug.Assert(condition.EdmProperty == null, "C-side conditions are not supported in function mappings."); 411return GenerateScalarPropertyMappingView(scalarPropertyMapping.EdmProperty, scalarPropertyMapping.ColumnProperty, row);
System\Data\Mapping\StorageComplexPropertyMapping.cs (2)
117if (this.EdmProperty != null) { 119sb.Append(this.EdmProperty.Name);
System\Data\Mapping\StorageComplexTypeMapping.cs (3)
115m_properties.Add(prop.EdmProperty.Name, prop); 127EdmProperty conditionMember = (conditionPropertyMap.EdmProperty != null) ? conditionPropertyMap.EdmProperty : conditionPropertyMap.ColumnProperty;
System\Data\Mapping\StorageConditionPropertyMapping.cs (2)
126if (this.EdmProperty != null) { 128sb.Append(this.EdmProperty.Name);
System\Data\Mapping\StorageMappingFragment.cs (2)
202EdmProperty conditionMember = (conditionPropertyMap.EdmProperty != null) ? conditionPropertyMap.EdmProperty : conditionPropertyMap.ColumnProperty;
System\Data\Mapping\StorageMappingItemCollection.cs (11)
555if (scalarPropMapping != null && scalarPropMapping.EdmProperty != null) 558if (MetadataHelper.IsPartOfEntityTypeKey(scalarPropMapping.EdmProperty)) 563interestingMembers.Add(scalarPropMapping.EdmProperty); 567else if (MetadataHelper.GetConcurrencyMode(scalarPropMapping.EdmProperty) == ConcurrencyMode.Fixed) 569interestingMembers.Add(scalarPropMapping.EdmProperty); 577MetadataHelper.GetConcurrencyMode(complexPropMapping.EdmProperty) == ConcurrencyMode.Fixed || HasFixedConcurrencyModeInAnyChildProperty(complexPropMapping)) 579interestingMembers.Add(complexPropMapping.EdmProperty); 585if (conditionMapping.EdmProperty != null) 587interestingMembers.Add(conditionMapping.EdmProperty); 611if (childScalarPropertyMapping != null && MetadataHelper.GetConcurrencyMode(childScalarPropertyMapping.EdmProperty) == ConcurrencyMode.Fixed) 617(MetadataHelper.GetConcurrencyMode(childComplexPropertyMapping.EdmProperty) == ConcurrencyMode.Fixed
System\Data\Mapping\StorageMappingItemLoader.cs (3)
2528.All(ppm => ppm.Key.EdmEquals(ppm.Value.EdmProperty)), "propertyMappings order does not correspond to the order of properties in the structuredType."); 3153if (!containerType.KeyMembers.Contains(scalarMap.EdmProperty)) 3156AddToSchemaErrorsWithMemberInfo(Strings.Mapping_InvalidContent_EndProperty, scalarMap.EdmProperty.Name,
System\Data\Mapping\StorageScalarPropertyMapping.cs (2)
98if (this.EdmProperty != null) { 100sb.Append(this.EdmProperty.Name);
System\Data\Mapping\Update\Internal\ViewLoader.cs (2)
350yield return scalarPropertyMapping.EdmProperty; 381yield return scalarPropertyMapping.EdmProperty;
System\Data\Mapping\ViewGeneration\CellCreator.cs (4)
388MemberPath cAttributeNode = new MemberPath(cNode, scalarPropMap.EdmProperty); 408MemberPath complexMemberNode = new MemberPath(cNode, complexPropMap.EdmProperty); 450Debug.Assert(conditionMap.EdmProperty != null); 471EdmMember conditionMember = (conditionMap.ColumnProperty != null) ? conditionMap.ColumnProperty : conditionMap.EdmProperty;
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (1)
233IEnumerable<StorageScalarPropertyMapping> scalarPropertyMaps = propertyMaps.Where(propMap => (propMap.EdmProperty.Equals(edmProperty)));