Partager via


ObjectStateManager.GetObjectStateEntry Méthode

Définition

Surcharges

GetObjectStateEntry(EntityKey)

Retourne un objet ObjectStateEntry pour l'entrée d'objet ou de relation avec la clé spécifiée.

GetObjectStateEntry(Object)

Retourne un objet ObjectStateEntry pour l'objet spécifié.

GetObjectStateEntry(EntityKey)

Retourne un objet ObjectStateEntry pour l'entrée d'objet ou de relation avec la clé spécifiée.

public virtual System.Data.Entity.Core.Objects.ObjectStateEntry GetObjectStateEntry (System.Data.Entity.Core.EntityKey key);
abstract member GetObjectStateEntry : System.Data.Entity.Core.EntityKey -> System.Data.Entity.Core.Objects.ObjectStateEntry
override this.GetObjectStateEntry : System.Data.Entity.Core.EntityKey -> System.Data.Entity.Core.Objects.ObjectStateEntry
Public Overridable Function GetObjectStateEntry (key As EntityKey) As ObjectStateEntry

Paramètres

key
EntityKey

L’EntityKeyopérateur

Retours

correspondant ObjectStateEntry au donné EntityKey .

Exceptions

Quand la clé a la valeur Null.

Lorsque la clé spécifiée est introuvable dans le gestionnaire d’état.

Aucune entité avec le spécifié EntityKey n’existe dans le ObjectStateManager .

S’applique à

GetObjectStateEntry(Object)

Retourne un objet ObjectStateEntry pour l'objet spécifié.

public virtual System.Data.Entity.Core.Objects.ObjectStateEntry GetObjectStateEntry (object entity);
abstract member GetObjectStateEntry : obj -> System.Data.Entity.Core.Objects.ObjectStateEntry
override this.GetObjectStateEntry : obj -> System.Data.Entity.Core.Objects.ObjectStateEntry
Public Overridable Function GetObjectStateEntry (entity As Object) As ObjectStateEntry

Paramètres

entity
Object

Objet Object auquel appartient l'objet ObjectStateEntry récupéré.

Retours

correspondant ObjectStateEntry au donné Object .

Exceptions

Aucune entité pour le spécifié Object n’existe dans le ObjectStateManager .

S’applique à