IConventionRelationshipBuilder.HasForeignKey メソッド

定義

オーバーロード

HasForeignKey(IReadOnlyList<IConventionProperty>, Boolean)

このリレーションシップの外部キーとして使用するプロパティを構成します。

HasForeignKey(IReadOnlyList<String>, Boolean)

このリレーションシップの外部キーとして使用するプロパティを構成します。

HasForeignKey(IReadOnlyList<IConventionProperty>, Boolean)

このリレーションシップの外部キーとして使用するプロパティを構成します。

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionRelationshipBuilder HasForeignKey (System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IConventionProperty> properties, bool fromDataAnnotation = false);
abstract member HasForeignKey : System.Collections.Generic.IReadOnlyList<Microsoft.EntityFrameworkCore.Metadata.IConventionProperty> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionRelationshipBuilder
Public Function HasForeignKey (properties As IReadOnlyList(Of IConventionProperty), Optional fromDataAnnotation As Boolean = false) As IConventionRelationshipBuilder

パラメーター

properties
IReadOnlyList<IConventionProperty>

このリレーションシップの外部キーとして使用するプロパティ。

fromDataAnnotation
Boolean

構成がデータ注釈を使用して指定されたかどうかを示します。

戻り値

プロパティが外部キーとして構成されている場合は同じビルダー インスタンス。 null それ以外の場合は 。

適用対象

HasForeignKey(IReadOnlyList<String>, Boolean)

このリレーションシップの外部キーとして使用するプロパティを構成します。

public Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionRelationshipBuilder HasForeignKey (System.Collections.Generic.IReadOnlyList<string> propertyNames, bool fromDataAnnotation = false);
abstract member HasForeignKey : System.Collections.Generic.IReadOnlyList<string> * bool -> Microsoft.EntityFrameworkCore.Metadata.Builders.IConventionRelationshipBuilder
Public Function HasForeignKey (propertyNames As IReadOnlyList(Of String), Optional fromDataAnnotation As Boolean = false) As IConventionRelationshipBuilder

パラメーター

propertyNames
IReadOnlyList<String>

このリレーションシップの外部キーとして使用するプロパティ。

fromDataAnnotation
Boolean

構成がデータ注釈を使用して指定されたかどうかを示します。

戻り値

プロパティが外部キーとして構成されている場合は同じビルダー インスタンス。 null それ以外の場合は 。

適用対象