共用方式為


Multiplicity 屬性 (關聯 SSDL)

在 實體資料模型 (EDM) 中,某個關聯之 End 項目的 Multiplicity 屬性會指定可以在關聯上產生關聯之每一個型別的實體數。

下列範例中的關聯會根據員工/經理關聯性來連接 Employee 實體。關聯的兩端具有相同的型別,如同 Type="AdventureWorks.Store.Employee" 指派所指示。

Multiplicity 屬性會指定身為經理的 Employee 可參與此關聯的零個或多個執行個體,但是 Employee1 只能有一位經理,而且只能參與此型別的一個關聯。這個多重性指定會對應到 Employee 資料表中的外部索引鍵所容納的關聯性 (該資料表只能包含一個 ManagerID)。

  <Association Name="FK_Employee_Employee_ManagerID">
    <End Role="Employee" Type="Adventureworks.Store.Employee" Multiplicity="0..1" />
    <End Role="Employee1" Type="Adventureworks.Store.Employee" Multiplicity="*" />
    <ReferentialConstraint>
      <Principal Role="Employee">
        <PropertyRef Name="EmployeeID" />
      </Principal>
      <Dependent Role="Employee1">
        <PropertyRef Name="ManagerID" />
      </Dependent>
    </ReferentialConstraint>
  </Association>

這個範例說明關聯的一對多多重性。如需使用多對多關聯的完整範例,請參閱附註和研究共同作業工具 (EDM 範例應用程式)

另請參閱

概念

AssociationSet 項目 (EntityContainer SSDL)
Multiplicity 屬性 (關聯 SSDL)
AssociationSetMapping 項目 (MSL)
Type 屬性 (關聯 SSDL)
AdventureWorks 完整模型 (EDM)
ReferentialConstraint 項目 (關聯 SSDL)