为什么不将表(两列PK,FK)添加到ModelName.tt类?

时间:2018-10-17 11:31:15

标签: c# sql-server entity-framework

我有一个只有两列的表,这两列都是PK,FK。

更新模型数据库时,此表未添加到ModelName.tt类中。 仅添加到ModelName.edmx.diagram:

input

,并且还添加到了ModelName.edmx:

<AssociationConnector Association="ModelName.Customer_CustomerRole_Mapping" ManuallyRouted="false" />

表名:Customer_CustomerRole_Mapping

此表的模式为:

<EntityType Name="Customer_CustomerRole_Mapping">
  <Key>
    <PropertyRef Name="Customer_Id" />
    <PropertyRef Name="CustomerRole_Id" />
  </Key>
  <Property Name="Customer_Id" Type="int" Nullable="false" />
  <Property Name="CustomerRole_Id" Type="int" Nullable="false" />
</EntityType>

谢谢。

0 个答案:

没有答案