ObjectStateManager.GetObjectStateEntry, méthode (EntityKey)
[Cette page concerne Entity Framework version 6. La dernière version est disponible sous le nom de package 'Entity Framework' NuGet. Pour plus d'informations sur Entity Framework, consultez msdn.com/data/ef.]
Retourne un objet ObjectStateEntry pour l'entrée d'objet ou de relation avec la clé spécifiée.
Espace de noms : System.Data.Entity.Core.Objects
Assembly : EntityFramework (dans EntityFramework.dll)
Syntaxe
'Déclaration
Public Overridable Function GetObjectStateEntry ( _
key As EntityKey _
) As ObjectStateEntry
'Utilisation
Dim instance As ObjectStateManager
Dim key As EntityKey
Dim returnValue As ObjectStateEntry
returnValue = instance.GetObjectStateEntry(key)
public virtual ObjectStateEntry GetObjectStateEntry(
EntityKey key
)
public:
virtual ObjectStateEntry^ GetObjectStateEntry(
EntityKey^ key
)
abstract GetObjectStateEntry :
key:EntityKey -> ObjectStateEntry
override GetObjectStateEntry :
key:EntityKey -> ObjectStateEntry
public function GetObjectStateEntry(
key : EntityKey
) : ObjectStateEntry
Paramètres
- key
Type : System.Data.Entity.Core.EntityKey
EntityKey.
Valeur de retour
Type : System.Data.Entity.Core.Objects.ObjectStateEntry
Objet ObjectStateEntry correspondant pour le EntityKey donné.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | Lorsque la clé a la valeur Null. |
ArgumentException | Lorsque la clé spécifiée est introuvable dans le gestionnaire d'état. |
InvalidOperationException | Il n'existe aucune entité avec l'objet EntityKey spécifié dans l'objet ObjectStateManager. |