Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

IObjectSpace.GetObjectByKey(Type, Object) Method

Returns the persistent object that has the specified value for its key property.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v20.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

object GetObjectByKey(
    Type type,
    object key
)

Parameters

Name Type Description
type Type

A Type object which is the type of objects to search for.

key Object

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

Returns

Type Description
Object

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

Remarks

When implementing the IObjectSpace interface in the BaseObjectSpace class’s descendant, don’t implement the GetObjectByKey method. It’s implemented in the BaseObjectSpace class. The BaseObjectSpace.GetObjectByKey(Type type, object key) method returns null, but it is virtual. So, you should override it in your descendant.

To get the key property value, use the IObjectSpace.GetKeyValue method.

See Also