Key 項目 (SSDL)
存放結構定義語言 (SSDL) 內的 Key 項目代表基礎資料庫中資料表的主要索引鍵。 Key 是 EntityType 項目的子項目,它代表資料表中的資料列。 Key 項目中的主要索引鍵透過參考 EntityType 項目上所定義的一個或多個 Property 項目來定義。
Key 項目可以擁有下列子項目 (依列出的順序):
PropertyRef (一個或多個)
沒有屬性適用於 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>