IndexAttribute 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
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[]
按顺序构成索引的其他属性(如果有)。