Key 要素 (SSDL)
ストア スキーマ定義言語 (SSDL) の Key 要素は、基になるデータベースのテーブルの主キーを表します。 Key は EntityType 要素の子要素です。これはテーブル内の行を表します。 主キーは、EntityType 要素で定義される 1 つ以上の Property 要素を参照することにより、Key 要素内で定義されます。
The Key element can have the following child elements (in the order listed):
PropertyRef (1 個以上)
No attributes are applicable to the Key element.
例
次の例では、1 つのプロパティを参照するキーを持つ 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>