UnitOfWork.ReloadChangedObjects() Method
Reloads the state of persistent objects modified within the current UnitOfWork from the data store.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.1.dll
NuGet Packages: DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap, DevExpress.Xpo
NuGet Package: DevExpress.Xpo
Declaration
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();
}
Related GitHub Examples
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.