Principal 要素 (SSDL)
ストア スキーマ定義言語 (SSDL) の Principal 要素は、ReferentialConstraint 要素の子要素であり、外部キー制約 (参照制約) のプリンシパル End を定義します。Principal 要素は、他の列に参照されるテーブル内の主キーの列を指定します。PropertyRef 要素は、参照される列を指定します。Dependent 要素は、Principal 要素で指定される主キーの列を参照する列を指定します。
Principal 要素には、次の子要素をここに示す順序で含めることができます。
PropertyRef (1 個以上)
Annotation 要素 (0 個以上)
適用可能な属性
次の表は、Principal 要素に適用できる属性を示しています。
属性名 |
必須 |
値 |
---|---|---|
Role |
はい |
対応するEnd 要素の Role 属性 (使用されている場合) と同じ値です。そうでない場合は、参照される列を含んでいるテーブルの名前です。 |
注意
Principal 要素には、任意の数の annotation 属性 (カスタム XML 属性) を適用できます。ただし、カスタム属性は CSDL 用に予約されたどの XML 名前空間にも属さない場合があります。カスタム属性の完全修飾名は一意である必要があります。
例
次の例は、ReferentialConstraint 要素を使用して FK_CustomerOrders 外部キー制約に参加する列を指定する Association 要素 を示します。Principal 要素は、制約のプリンシパル Endとして Customer テーブルの CustomerId 列を指定します。
<Association Name="FK_CustomerOrders">
<End Role="Customers"
Type="ExampleModel.Store.Customers" Multiplicity="1">
<OnDelete Action="Cascade" />
</End>
<End Role="Orders"
Type="ExampleModel.Store.Orders" Multiplicity="*" />
<ReferentialConstraint>
<Principal Role="Customers">
<PropertyRef Name="CustomerId" />
</Principal>
<Dependent Role="Orders">
<PropertyRef Name="CustomerId" />
</Dependent>
</ReferentialConstraint>
</Association>
<Association Name="FK_CustomerOrders">
<End Role="Customers" Type="ExampleModel.Store.Customers" Multiplicity="1">
<OnDelete Action="Cascade" />
</End>
<End Role="Orders" Type="ExampleModel.Store.Orders" Multiplicity="*" />
<ReferentialConstraint>
<Principal Role="Customers">
<PropertyRef Name="CustomerId" />
</Principal>
<Dependent Role="Orders">
<PropertyRef Name="CustomerId" />
</Dependent>
</ReferentialConstraint>
</Association>
<Association Name="FK_CustomerOrders">
<End Role="Customers" Type="ExampleModel.Store.Customers" Multiplicity="1">
<OnDelete Action="Cascade" />
</End>
<End Role="Orders" Type="ExampleModel.Store.Orders" Multiplicity="*" />
<ReferentialConstraint>
<Principal Role="Customers">
<PropertyRef Name="CustomerId" />
</Principal>
<Dependent Role="Orders">
<PropertyRef Name="CustomerId" />
</Dependent>
</ReferentialConstraint>
</Association>