[DevExpress Support Team: CLONED FROM K18356: How to use XPO caching in XAF]
Is also Reset of small part of Cache possible, so that don't have to load all the things after changes?
e.g. this method:
C#public static void ResetDataCacheRootByType<T>() where T : IDisposable
{
if (rootDisposableObjects != null)
{
foreach (var disposableObject in rootDisposableObjects.OfType<T>())
disposableObject.Dispose();
rootDisposableObjects = null;
}
}
How can I reset it, so changed data will be force loaded then?
tried this:
[C#]
but get that exception:
[C#]