Skip to main content
.NET 6.0+

UnitOfWork.ReloadChangedObjects() Method

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

Namespace: DevExpress.Xpo

Assembly: DevExpress.Xpo.v23.2.dll

NuGet Package: DevExpress.Xpo

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 NestedUnitOfWork.

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

try {
    unitOfWork.CommitChanges();
} catch(LockingException ex) {
    unitOfWork.ReloadChangedObjects();
}

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