Skip to main content
.NET 6.0+

Session.GetObjectByKey<ClassType>(Object) Method

Returns a persistent object of the type designated by the specified generic type parameter, with the specified value for its key property.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

Declaration

public ClassType GetObjectByKey<ClassType>(
    object id
)

Parameters

Name Type Description
id Object

An object that represents the persistent object’s key property value.

Type Parameters

Name Description
ClassType

A type of objects to search for.

Returns

Type Description
ClassType

An object which represents a persistent object with the specified value for its key property. Null if no objects are found.

Remarks

Below is an example of using the GetObjectByKey<ClassType> method. Here, session is the Session instance.

using DevExpress.Xpo;
// ...
Person personToDelete = session.GetObjectByKey<Person>(152);
session.Delete(personToDelete);

The GetObjectByKey<ClassType> method searches the memory for the object that has the specified value for its key property. If such an object is found, it is not reloaded. To get the up-to-date object from the storage, use the overloaded Session.GetObjectByKey method with the alwaysGetFromDb parameter set to true.

Note

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

The following code snippets (auto-collected from DevExpress Examples) contain references to the GetObjectByKey<ClassType>(Object) method.

Note

The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.

See Also