共用方式為


Name 屬性 (EntityType CSDL)

在 實體資料模型 (EDM) 中,概念結構定義語言 (CSDL) 內的 EntityType 項目包含一個 Name 屬性,這個屬性會識別所設計的物件模型及對應規格中的型別。

下列來自 Adventure Works 資料庫中 Human Resources 資料分割的宣告會顯示 Department 實體宣告。Name 屬性會使用以下的方式指派:Name="Department"Department 實體的每一個屬性 (Property) 也都有 Name 屬性 (Attribute)。

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

另請參閱

概念

Name 屬性 (EntityType SSDL)
TypeName 屬性 (EntityTypeMapping)
AdventureWorks 完整模型 (EDM)