ForeignKeyAttribute(String) コンストラクター

定義

ForeignKeyAttribute クラスの新しいインスタンスを初期化します。

public:
 ForeignKeyAttribute(System::String ^ name);
public ForeignKeyAttribute (string name);
new System.ComponentModel.DataAnnotations.Schema.ForeignKeyAttribute : string -> System.ComponentModel.DataAnnotations.Schema.ForeignKeyAttribute
Public Sub New (name As String)

パラメーター

name
String

関連付けられたナビゲーション プロパティの名前、または関連付けられた 1 つ以上の外部キーの名前。

注釈

属性を ForeignKey 外部キー プロパティに追加する場合は、 name 関連付けられているナビゲーション プロパティの名前を指定する必要があります。 ナビゲーション プロパティに 属性を ForeignKey 追加する場合は、 name 関連付けられている 1 つ以上の外部キーの名前を指定する必要があります。 ナビゲーション プロパティに複数の外部キーがある場合は、コンマを使用して外部キー名の一覧を区切ります。 詳細については、「 Code First Data Annotations」を参照してください。

適用対象