IndexAttribute 建構函式

定義

多載

IndexAttribute(String[])
已淘汰.

初始化 IndexAttribute 類別的新執行個體。

IndexAttribute(String, String[])

初始化 IndexAttribute 類別的新執行個體。

IndexAttribute(String[])

警告

Use the other constructor

初始化 IndexAttribute 類別的新執行個體。

public IndexAttribute (params string[] propertyNames);
[System.Obsolete("Use the other constructor")]
public IndexAttribute (params string[] propertyNames);
new Microsoft.EntityFrameworkCore.IndexAttribute : string[] -> Microsoft.EntityFrameworkCore.IndexAttribute
[<System.Obsolete("Use the other constructor")>]
new Microsoft.EntityFrameworkCore.IndexAttribute : string[] -> Microsoft.EntityFrameworkCore.IndexAttribute
Public Sub New (ParamArray propertyNames As String())

參數

propertyNames
String[]

構成索引的屬性,依序 (必須至少有一個) 。

屬性

適用於

IndexAttribute(String, String[])

初始化 IndexAttribute 類別的新執行個體。

public IndexAttribute (string propertyName, params string[] additionalPropertyNames);
new Microsoft.EntityFrameworkCore.IndexAttribute : string * string[] -> Microsoft.EntityFrameworkCore.IndexAttribute
Public Sub New (propertyName As String, ParamArray additionalPropertyNames As String())

參數

propertyName
String

索引中的第一個 (或僅) 屬性。

additionalPropertyNames
String[]

構成索引的其他屬性,如果有的話,依序排列。

適用於