共用方式為


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

數位,用來判斷多資料行索引的資料行順序。

備註

多資料行索引是使用多個屬性中的相同索引名稱來建立的。 然後,這些屬性中的資訊會合並在一起,以指定實際的資料庫索引。

適用於