Metodo ObjectStateEntry.IEntityChangeTracker.EntityComplexMemberChanged
[Questa pagina è specifica della versione 6 di Entity Framework. La versione più recente è disponibile come pacchetto NuGet per "Entity Framework". Per ulteriori informazioni su Entity Framework, vedere la pagina msdn.com/data/ef.]
Utilizzato per segnalare che una proprietà complessa è stata modificata. Il valore della proprietà memorizzato nella cache durante EntityMemberChanging viene ora aggiunto a OriginalValues
Spazio dei nomi: System.Data.Entity.Core.Objects
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")> _
Private Sub EntityComplexMemberChanged ( _
entityMemberName As String, _
complexObject As Object, _
complexObjectMemberName As String _
) Implements IEntityChangeTracker.EntityComplexMemberChanged
'Utilizzo
Dim instance As ObjectStateEntry
Dim entityMemberName As String
Dim complexObject As Object
Dim complexObjectMemberName As String
CType(instance, IEntityChangeTracker).EntityComplexMemberChanged(entityMemberName, _
complexObject, complexObjectMemberName)
[SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
void IEntityChangeTracker.EntityComplexMemberChanged(
string entityMemberName,
Object complexObject,
string complexObjectMemberName
)
[SuppressMessageAttribute(L"Microsoft.Design", L"CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
private:
virtual void EntityComplexMemberChanged(
String^ entityMemberName,
Object^ complexObject,
String^ complexObjectMemberName
) sealed = IEntityChangeTracker::EntityComplexMemberChanged
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private abstract EntityComplexMemberChanged :
entityMemberName:string *
complexObject:Object *
complexObjectMemberName:string -> unit
[<SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")>]
private override EntityComplexMemberChanged :
entityMemberName:string *
complexObject:Object *
complexObjectMemberName:string -> unit
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
Parametri
- entityMemberName
Tipo: System.String
Nome della proprietà dell'entità di primo livello che è cambiata
- complexObject
Tipo: System.Object
Oggetto complesso che contiene la proprietà modificata
- complexObjectMemberName
Tipo: System.String
Nome della proprietà modificata in complexObject
Implements
IEntityChangeTracker.EntityComplexMemberChanged(String, Object, String)