<AssociationSet Name="Deal_DealCostSet" Association="Png.GcsAg.Model.ServerModelEF.Deal_DealCost">
<End Role="Deal" EntitySet="Deals" />
<End Role="DealCost" EntitySet="DealCosts" />
</AssociationSet>
In Deal:
<NavigationProperty Name="DealCost" Relationship="Png.GcsAg.Model.ServerModelEF.Deal_DealCost" FromRole="Deal" ToRole="DealCost" />
In DealCost:
<NavigationProperty Name="Deal" Relationship="Png.GcsAg.Model.ServerModelEF.Deal_DealCost" FromRole="DealCost" ToRole="Deal" />
<Association Name="Deal_DealCost">
<End Role="Deal" Type="Png.GcsAg.Model.ServerModelEF.Deal" Multiplicity="1">
<OnDelete Action="Cascade" />
</End>
<End Role="DealCost" Type="Png.GcsAg.Model.ServerModelEF.DealCost" Multiplicity="0..1" />
<ReferentialConstraint>
<Principal Role="Deal">
<PropertyRef Name="DealId" />
</Principal>
<Dependent Role="DealCost">
<PropertyRef Name="DealId" />
</Dependent>
</ReferentialConstraint>
</Association>
<AssociationSetMapping Name="Deal_DealCostSet" TypeName="Png.GcsAg.Model.ServerModelEF.Deal_DealCost" StoreEntitySet="DEAL_COSTs">
<EndProperty Name="Deal">
<ScalarProperty Name="DealId" ColumnName="DEAL_ID" />
</EndProperty>
<EndProperty Name="DealCost">
<ScalarProperty Name="DealId" ColumnName="DEAL_ID" />
</EndProperty>
</AssociationSetMapping> |
The configuration of the relationship looks right in the EDMX.
The Storage entity does not have the StoreGeneratedPattern="Identity" tag on the Key property. Should it?
<EntityType Name="DEAL_COST">
<Key>
<PropertyRef Name="DEAL_ID" />
</Key>
<Property Name="DEAL_ID" Type="int64" Nullable="false" />
<Property Name="COST" Type="decimal" />
<Property Name="DEAL_COST_TYPE_ID" Type="int64" />