共用方式為


Role 屬性 (關聯 SSDL)

在 實體資料模型 (EDM) 中,End 項目的 Role 屬性會指定經由關聯而相關的實體以及實體的功能。本主題中範例的關聯會根據經理/員工關聯性來連接 Employee 實體。關聯的兩端具有相同的型別,如同 Type="AdventureWorks.Store.Employee" 指派所指示。

Role 屬性會區分被管理的員工與經理。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>

另請參閱

概念

Association 項目 (SSDL)
Role 屬性 (關聯 SSDL)
AdventureWorks 完整模型 (EDM)