Skip to main content
A newer version of this page is available. .

Session.GetObjectByKey(XPClassInfo, Object, Boolean) Method

Returns the reloaded persistent object with the specified value of the key property from a data store.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v18.2.dll

Declaration

public object GetObjectByKey(
    XPClassInfo classInfo,
    object id,
    bool alwaysGetFromDataStore
)

Parameters

Name Type Description
classInfo XPClassInfo

An XPClassInfo object which contains the metadata information of the class.

id Object

An object which represents the key property’s value of the persistent object.

alwaysGetFromDataStore Boolean

true to reload the persistent object from storage if it is found in memory; otherwise, false.

Returns

Type Description
Object

An object which represents the persistent object with the specified value of the key property.

Remarks

Firstly, the GetObjectByKey method searches in memory for the object with the specified value of the key property. If such an object is found, it is not reloaded. To get the up-to-date object from storage the alwaysGetFromDb parameter must be set to true.

Note

The GetObjectByKey method does not find objects until they are saved to a data store.

See Also