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

UnitOfWork.ReloadChangedObjects() Method

Reloads the state of persistent objects modified within the current Unit of Work from the data store.

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v19.1.dll

Declaration

public void ReloadChangedObjects()

Remarks

The ReloadChangedObjects method reloads the object state from the store, but since partial reloading might lead to an inconsistency, the recommended approach is to dispose of the current UnitOfWork and loaded objects, and load them from a new Session. This method should never be used within the Nested Unit of Work.

To reload the state of an individual persistent object, use the XPBaseObject.Reload method.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the ReloadChangedObjects() 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