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
- propertyName
Typ: System.String
Eigenschaftswert
Typ: System.Object
Der Wert der Eigenschaft.