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

BaseObjectSpace.GetObject(Object) Method

Retrieves an object that corresponds to a specific object from another Object Space or to a specific record from a data view created by the IObjectSpace.CreateDataView method.

Namespace: DevExpress.ExpressApp

Assembly: DevExpress.ExpressApp.v19.1.dll

Declaration

public virtual object GetObject(
    object obj
)

Parameters

Name Type Description
obj Object

An object from another Object Space or the data view record corresponding to the required persistent object.

Returns

Type Description
Object

An object retrieved from the database via the current Object Space.

Remarks

This method does nothing and returns null (Nothing in VB). So, it should be overridden in the BaseObjectSpace class’ descendants.

Implements

See Also