fix CacheDb

This commit is contained in:
Фролов 2021-11-10 17:05:57 +05:00
parent fd74ae20a0
commit a1ea0d7cdd

View File

@ -26,7 +26,7 @@ namespace AsbCloudInfrastructure.Services.Cache
var tableCache = new CacheTable<TEntity>(context, cacheItem);
if (isCachedDataObsolete)
tableCache.Refresh();
tableCache.Refresh(true);
return tableCache;
}