次の方法で共有


IndexAttribute コンストラクター

定義

オーバーロード

IndexAttribute()

規則によって IndexAttribute 名前が付けられ、列の順序、クラスタリング、または一意性が指定されていないインデックスのインスタンスを作成します。

IndexAttribute(String)

指定した名前の IndexAttribute インデックスのインスタンスを作成し、列の順序、クラスタリング、または一意性を指定しません。

IndexAttribute(String, Int32)

指定した IndexAttribute 名前と列の順序で、クラスタリングまたは一意性が指定されていないインデックスのインスタンスを作成します。

IndexAttribute()

規則によって IndexAttribute 名前が付けられ、列の順序、クラスタリング、または一意性が指定されていないインデックスのインスタンスを作成します。

public IndexAttribute ();
Public Sub New ()

適用対象

IndexAttribute(String)

指定した名前の IndexAttribute インデックスのインスタンスを作成し、列の順序、クラスタリング、または一意性を指定しません。

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

パラメーター

name
String

インデックス名。

適用対象

IndexAttribute(String, Int32)

指定した IndexAttribute 名前と列の順序で、クラスタリングまたは一意性が指定されていないインデックスのインスタンスを作成します。

public IndexAttribute (string name, int order);
new System.ComponentModel.DataAnnotations.Schema.IndexAttribute : string * int -> System.ComponentModel.DataAnnotations.Schema.IndexAttribute
Public Sub New (name As String, order As Integer)

パラメーター

name
String

インデックス名。

order
Int32

複数列インデックスの列の順序を決定するために使用される数値。

注釈

複数列インデックスは、複数の属性で同じインデックス名を使用して作成されます。 これらの属性の情報は、実際のデータベース インデックスを指定するために結合されます。

適用対象