如何:通过将单个实体映射到两个表以定义模型
当在 Entity Data Model (EDM) 中使用早期数据时,如果能够将单个实体映射到数据库中的两个表,则有时会很有用。当两个表共享一个公共键(例如,使用随 SQL Server 2005 附带的 AdventureWorks 示例数据库的 Customer 表和 Store 表)时,可以执行此操作。
创建一个使用 AdventureWorks 数据库的 Customer 表和 Store 表的 EDM,并按以下各节的说明修改 *.edmx 文件。使用主题如何:使用映射到单独表的实体创建和执行对象查询中演示的代码以测试此数据模型。
实现概念性架构定义语言 (CSDL) 要求
找到 *.edmx 文件的 <edmx:ConceptualModels> 部分。
删除表示 Customer 实体的 <EntityType> 标记。
删除 <Key> 标记、<PropertyRef> 标记以及现已删除的 Customer 实体的名称和标识符 StoreID。
将已删除的 Customer 实体的属性移到 Store 实体的 <EntityType> 标记内。
将现已删除的 Customer 实体的 rowguid 属性重命名为 Cust_rowguid。
将现已删除的 Customer 实体的 ModifiedDate 属性重命名为 Cust_ModifiedDate。
将显示概念性架构。
<edmx:ConceptualModels>
<Schema Namespace="AdventureWorksModel" Alias="Self"
xmlns="https://schemas.microsoft.com/ado/2006/04/edm">
<EntityContainer Name="AdventureWorksEntities">
<EntitySet Name="Store"
EntityType="AdventureWorksModel.Store" />
</EntityContainer>
<EntityType Name="Store">
<Key>
<PropertyRef Name="CustomerID" />
</Key>
<Property Name="CustomerID" Type="Int32" Nullable="false" />
<Property Name="Name" Type="String"
Nullable="false" MaxLength="50" />
<Property Name="SalesPersonID" Type="Int32" />
<Property Name="Demographics" Type="String"
MaxLength="1073741823" />
<Property Name="rowguid" Type="Guid" Nullable="false" />
<Property Name="ModifiedDate" Type="DateTime"
Nullable="false" />
<Property Name="TerritoryID" Type="Int32" />
<Property Name="AccountNumber" Type="String"
Nullable="false"
MaxLength="10" Unicode="false" />
<Property Name="CustomerType" Type="String"
Nullable="false"
MaxLength="1" FixedLength="true" />
<Property Name="Cust_rowguid" Type="Guid"
Nullable="false" />
<Property Name="Cust_ModifiedDate" Type="DateTime"
Nullable="false" />
</EntityType>
</Schema>
</edmx:ConceptualModels>
实现存储架构定义语言 (SSDL) 要求
找到 *.edmx 文件的 <edmx:StorageModels> 部分。
将 SSDL 架构保留不变,如下所示:
<edmx:StorageModels>
<Schema Namespace="AdventureWorksModel.Store" Alias="Self"
Provider="System.Data.SqlClient"
ProviderManifestToken="2005"
xmlns="https://schemas.microsoft.com/ado/2006/04/edm/ssdl">
<EntityContainer Name="Sales">
<EntitySet Name="Customer"
EntityType="AdventureWorksModel.Store.Customer" />
<EntitySet Name="Store"
EntityType="AdventureWorksModel.Store.Store" />
<AssociationSet Name="FK_Store_Customer_CustomerID"
Association="AdventureWorksModel.Store.FK_Store_Customer_CustomerID">
<End Role="Customer" EntitySet="Customer" />
<End Role="Store" EntitySet="Store" />
</AssociationSet>
</EntityContainer>
<EntityType Name="Customer">
<Key>
<PropertyRef Name="CustomerID" />
</Key>
<Property Name="CustomerID" Type="int"
Nullable="false" StoreGeneratedPattern="Identity" />
<Property Name="TerritoryID" Type="int" />
<Property Name="AccountNumber" Type="varchar"
Nullable="false" MaxLength="10" />
<Property Name="CustomerType" Type="nchar"
Nullable="false" MaxLength="1" />
<Property Name="rowguid"
Type="uniqueidentifier" Nullable="false" />
<Property Name="ModifiedDate" Type="datetime"
Nullable="false" />
</EntityType>
<EntityType Name="Store">
<Key>
<PropertyRef Name="CustomerID" />
</Key>
<Property Name="CustomerID" Type="int" Nullable="false" />
<Property Name="Name" Type="nvarchar"
Nullable="false" MaxLength="50" />
<Property Name="SalesPersonID" Type="int" />
<Property Name="Demographics" Type="xml" />
<Property Name="rowguid" Type="uniqueidentifier"
Nullable="false" />
<Property Name="ModifiedDate" Type="datetime"
Nullable="false" />
</EntityType>
<Association Name="FK_Store_Customer_CustomerID">
<End Role="Customer"
Type="AdventureWorksModel.Store.Customer" Multiplicity="1" />
<End Role="Store" Type="AdventureWorksModel.Store.Store"
Multiplicity="0..1" />
<ReferentialConstraint>
<Principal Role="Customer">
<PropertyRef Name="CustomerID" />
</Principal>
<Dependent Role="Store">
<PropertyRef Name="CustomerID" />
</Dependent>
</ReferentialConstraint>
</Association>
</Schema>
</edmx:StorageModels>
实现映射规范语言 (MSL) 要求
找到 *.edmx 文件的 <edmx:Mappings> 部分。
从映射规范中删除 Customer 实体集的 <EntitySetMapping> 标记。
从映射规范中删除 Customer 实体类型的 <EntityTypeMapping> 标记。
将 Customer StoreEntitySet 的 <MappingFragment> 移到 StoreEntitySet 的 EntityType 映射内。
将显示映射规范。
<edmx:Mappings>
<Mapping Space="C-S"
xmlns="urn:schemas-microsoft-com:windows:storage:mapping:CS">
<EntityContainerMapping StorageEntityContainer="Sales"
CdmEntityContainer="AdventureWorksEntities">
<EntitySetMapping Name="Store">
<EntityTypeMapping
TypeName="IsTypeOf(AdventureWorksModel.Store)">
<MappingFragment StoreEntitySet="Store">
<ScalarProperty Name="CustomerID"
ColumnName="CustomerID" />
<ScalarProperty Name="Name" ColumnName="Name" />
<ScalarProperty Name="SalesPersonID"
ColumnName="SalesPersonID" />
<ScalarProperty Name="Demographics"
ColumnName="Demographics" />
<ScalarProperty Name="rowguid"
ColumnName="rowguid" />
<ScalarProperty Name="ModifiedDate"
ColumnName="ModifiedDate" />
</MappingFragment>
<MappingFragment StoreEntitySet="Customer">
<ScalarProperty Name="CustomerID"
ColumnName="CustomerID" />
<ScalarProperty Name="TerritoryID"
ColumnName="TerritoryID" />
<ScalarProperty Name="AccountNumber"
ColumnName="AccountNumber" />
<ScalarProperty Name="CustomerType"
ColumnName="CustomerType" />
<ScalarProperty Name="Cust_rowguid"
ColumnName="rowguid" />
<ScalarProperty Name="Cust_ModifiedDate"
ColumnName="ModifiedDate" />
</MappingFragment>
</EntityTypeMapping>
</EntitySetMapping>
</EntityContainerMapping>
</Mapping>
</edmx:Mappings>