Condividi tramite


Attributo Name (EntityType CSDL)

In Entity Data Model (EDM) un elemento EntityType in CSDL (Conceptual Schema Definition Language) include un attributo Name che identifica il tipo nel modello a oggetti progettato e nella specifica di mapping.

La dichiarazione seguente dalla partizione Human Resources del database Adventure Works illustra la dichiarazione dell'entità Department. L'attributo Name viene assegnato come segue: Name="Department". Anche ogni proprietà dell'entità Department dispone di un attributo Name.

  <EntityType Name="Department" 
    <Key>
        <PropertyRef Name="DepartmentID">
    </Key>
    <Property Name="DepartmentID" Type="Int16" Nullable="false" />
    <Property Name="Name" Type="String" Nullable="false" />
    <Property Name="GroupName" Type="String" Nullable="false" />
    <Property Name="ModifiedDate" Type="DateTime" Nullable="false" />
  </EntityType>

Vedere anche

Concetti

Attributo Name (EntityType SSDL)
Attributo TypeName (EntityTypeMapping)
Modello completo di AdventureWorks (EDM)