共用方式為


Key 項目 (SSDL)

存放結構定義語言 (SSDL) 內的 Key 項目代表基礎資料庫中資料表的主要索引鍵。 KeyEntityType 項目的子項目,它代表資料表中的資料列。 Key 項目中的主要索引鍵透過參考 EntityType 項目上所定義的一個或多個 Property 項目來定義。

Key 項目可以擁有下列子項目 (依列出的順序):

沒有屬性適用於 Key 項目。

範例

下列範例顯示的 EntityType 項目具有參考一個屬性的索引鍵:

<EntityType Name="Customers">
  <Documentation>
    <Summary>Summary here.</Summary>
    <LongDescription>Long description here.</LongDescription>
  </Documentation>
  <Key>
    <PropertyRef Name="CustomerId" />
  </Key>
  <Property Name="CustomerId" Type="int" Nullable="false" />
  <Property Name="Name" Type="nvarchar(max)" Nullable="false" />
</EntityType>

另請參閱

概念

Entity Framework 概觀
SSDL 規格

其他資源

CSDL、SSDL 和 MSL 規格
ADO.NET Entity Data Model Tools