Compartir a través de


Atributo Type (SSDL Association)

En el Entity Data Model (EDM), el atributo Type de un elemento End especifica el tipo de una entidad relacionada con otra mediante la asociación.

Ambos extremos del ejemplo de asociación siguiente son del tipo Employee. Los atributos Multiplicity y Role de los elementos End distinguen la lógica de la relación más allá del tipo de las entidades que se relacionan mediante la asociación. El Type debe certificarse completamente mediante el espacio de nombres de su esquema.

  <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>

Vea también

Conceptos

Elemento AssociationSet (SSDL EntityContainer)
Atributo Type (CSDL Association)
Elemento AssociationSetMapping (MSL)
Elemento ReferentialConstraint (SSDL Association)