Partager via


ObjectStateManager.TryGetObjectStateEntry, méthode (EntityKey, ObjectStateEntry%)

[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.]

Essaie de récupérer l'objet ObjectStateEntry correspondant pour l'objet ou la relation avec l'objet EntityKey spécifié.

Espace de noms :  System.Data.Entity.Core.Objects
Assembly :  EntityFramework (dans EntityFramework.dll)

Syntaxe

'Déclaration
Public Overridable Function TryGetObjectStateEntry ( _
    key As EntityKey, _
    <OutAttribute> ByRef entry As ObjectStateEntry _
) As Boolean
'Utilisation
Dim instance As ObjectStateManager 
Dim key As EntityKey 
Dim entry As ObjectStateEntry 
Dim returnValue As Boolean 

returnValue = instance.TryGetObjectStateEntry(key, _
    entry)
public virtual bool TryGetObjectStateEntry(
    EntityKey key,
    out ObjectStateEntry entry
)
public:
virtual bool TryGetObjectStateEntry(
    EntityKey^ key, 
    [OutAttribute] ObjectStateEntry^% entry
)
abstract TryGetObjectStateEntry : 
        key:EntityKey * 
        entry:ObjectStateEntry byref -> bool  
override TryGetObjectStateEntry : 
        key:EntityKey * 
        entry:ObjectStateEntry byref -> bool
public function TryGetObjectStateEntry(
    key : EntityKey, 
    entry : ObjectStateEntry
) : boolean

Paramètres

Valeur de retour

Type : System.Boolean
Une valeur booléenne qui est true s'il y a un objet ObjectStateEntry correspondant pour l'objet EntityKey donné ; sinon, false.

Exceptions

Exception Condition
ArgumentNullException

Une valeur null (Nothing en Visual Basic) est fournie pour la clé.

Voir aussi

Référence

ObjectStateManager Classe

Surcharge TryGetObjectStateEntry

Espace de noms System.Data.Entity.Core.Objects