Freigeben über


DbPropertyValues.Item-Eigenschaft

[Diese Seite bezieht sich auf Entity Framework Version 6. Die neueste Version ist als 'Entity Framework' NuGet-Paket verfügbar. Weitere Informationen zu Entity Framework finden Sie unter msdn.com/data/ef.]

Ruft den Wert der Eigenschaft mit dem angegebenen Eigenschaftennamen ab oder legt ihn fest. Der Wert ist möglicherweise eine geschachtelte Instanz dieser Klasse.

Namespace:  System.Data.Entity.Infrastructure
Assembly:  EntityFramework (in EntityFramework.dll)

Syntax

'Declaration
Public Default Property Item ( _
    propertyName As String _
) As Object 
    Get 
    Set
'Usage
Dim instance As DbPropertyValues 
Dim propertyName As String 
Dim value As Object 

value = instance(propertyName)

instance(propertyName) = value
public Object this[
    string propertyName
] { get; set; }
public:
property Object^ default[String^ propertyName] {
    Object^ get (String^ propertyName);
    void set (String^ propertyName, Object^ value);
}
member Item : Object with get, set
JScript supports the use of indexed properties, but not the declaration of new ones.

Parameter

Eigenschaftswert

Typ: System.Object
Der Wert der Eigenschaft.

Siehe auch

Verweis

DbPropertyValues Klasse

System.Data.Entity.Infrastructure-Namespace