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

XPObjectSpace.GetObject(Object) Method

Retrieves an object from another Object Space to the current Object Space.

Namespace: DevExpress.ExpressApp.Xpo

Assembly: DevExpress.ExpressApp.Xpo.v18.2.dll

Declaration

public override object GetObject(
    object obj
)

Parameters

Name Type Description
obj Object

An object that represents a template object from another Object Space.

Returns

Type Description
Object

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

Remarks

This method retrieves the object specified as the ObjectFromDifferentObjectSpace parameter from the database via the current Object Space’s XPObjectSpace.Session. If the passed object is not persistent, it’s returned as is.

See Also