Metodo ObjectContext.GetObjectByKey
[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.]
Restituisce un oggetto contenente la chiave di entità specificata.
Spazio dei nomi: System.Data.Entity.Core.Objects
Assembly: EntityFramework (in EntityFramework.dll)
Sintassi
'Dichiarazione
Public Overridable Function GetObjectByKey ( _
key As EntityKey _
) As Object
'Utilizzo
Dim instance As ObjectContext
Dim key As EntityKey
Dim returnValue As Object
returnValue = instance.GetObjectByKey(key)
public virtual Object GetObjectByKey(
EntityKey key
)
public:
virtual Object^ GetObjectByKey(
EntityKey^ key
)
abstract GetObjectByKey :
key:EntityKey -> Object
override GetObjectByKey :
key:EntityKey -> Object
public function GetObjectByKey(
key : EntityKey
) : Object
Parametri
- key
Tipo: System.Data.Entity.Core.EntityKey
Chiave dell'oggetto da trovare.
Valore restituito
Tipo: System.Object
Oggetto Object che rappresenta un'istanza di un tipo di entità.
Eccezioni
Eccezione | Condizione |
---|---|
ArgumentNullException | Il parametro key è Null. |
ObjectNotFoundException | L'oggetto non viene trovato nell'oggetto ObjectStateManager né nell'origine dati. |