11 references to ColumnProperty
System.Data.Entity (11)
System\Data\Mapping\BaseMetadataMappingVisitor.cs (1)
403Visit(storageScalarPropertyMapping.ColumnProperty);
System\Data\Mapping\FunctionImportMappingComposable.cs (1)
411return GenerateScalarPropertyMappingView(scalarPropertyMapping.EdmProperty, scalarPropertyMapping.ColumnProperty, row);
System\Data\Mapping\StorageEndPropertyMapping.cs (1)
105return m_properties.OfType<StorageScalarPropertyMapping>().Select((propertyMap => propertyMap.ColumnProperty)).Cast<EdmMember>();
System\Data\Mapping\StorageMappingItemLoader.cs (1)
2252keys[i] = mapping.ColumnProperty;
System\Data\Mapping\StorageScalarPropertyMapping.cs (2)
103if (this.ColumnProperty != null) { 105sb.Append(this.ColumnProperty.Name);
System\Data\Mapping\Update\Internal\ViewLoader.cs (2)
348if (StoreGeneratedPattern.None != MetadataHelper.GetStoreGeneratedPattern(scalarPropertyMapping.ColumnProperty)) 379if (columns.Contains(scalarPropertyMapping.ColumnProperty))
System\Data\Mapping\ViewGeneration\CellCreator.cs (2)
385Debug.Assert(scalarPropMap.ColumnProperty != null, "ColumnMember for a Scalar Property can not be null"); 392MemberPath sAttributeNode = new MemberPath(sRootExtent, scalarPropMap.ColumnProperty);
System\Data\Mapping\ViewGeneration\Structures\LeafCellTreeNode.cs (1)
238MemberProjectedSlot sSlot = new MemberProjectedSlot(new MemberPath(sRootNode, scalarPropertyMap.ColumnProperty));