共用方式為


PropertyValues.Item[] 屬性

定義

多載

Item[String]

取得或設定已指定屬性名稱的屬性值。

Item[IProperty]

取得或設定屬性值。

Item[String]

取得或設定已指定屬性名稱的屬性值。

public abstract object this[string propertyName] { get; set; }
public abstract object? this[string propertyName] { get; set; }
member this.Item(string) : obj with get, set
Default Public MustOverride Property Item(propertyName As String) As Object

參數

propertyName
String

屬性名稱。

屬性值

屬性的值。

適用於

Item[IProperty]

取得或設定屬性值。

public abstract object this[Microsoft.EntityFrameworkCore.Metadata.IProperty property] { get; set; }
public abstract object? this[Microsoft.EntityFrameworkCore.Metadata.IProperty property] { get; set; }
member this.Item(Microsoft.EntityFrameworkCore.Metadata.IProperty) : obj with get, set
Default Public MustOverride Property Item(property As IProperty) As Object

參數

property
IProperty

屬性。

屬性值

屬性的值。

適用於