Session.GetLoadedObjectByKey(Type, Object) Method
Returns the persistent object with the specified value of the key property that has been already loaded from a data store.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v25.1.dll
NuGet Package: DevExpress.Xpo
Declaration
Parameters
| Name | Type | Description |
|---|---|---|
| classType | Type | The Type of the persistent object. |
| id | Object | An object which represents the key property’s value of the persistent object. |
Returns
| Type | Description |
|---|---|
| Object | An object which represents the persistent object with the specified value of the key property. null (Nothing in Visual Basic) if the persistent object was not found in memory. |
Remarks
To get the up to date object from the data store, use the Session.GetObjectByKey method.
See Also