Merge branch 'dev' into feature/refactoring_process_map

This commit is contained in:
ngfrolov 2023-10-17 09:47:18 +05:00
commit 438cf60b6e
Signed by untrusted user who does not match committer: ng.frolov
GPG Key ID: E99907A0357B29A7

View File

@ -40,6 +40,7 @@ namespace AsbCloudInfrastructure.Repository
cacheEntry.SlidingExpiration = CacheOlescence;
var entities = this.GetQuery().ToArray();
cacheEntry.Value = entities;
return entities;
});
return cache;
@ -53,6 +54,7 @@ namespace AsbCloudInfrastructure.Repository
cacheEntry.SlidingExpiration = CacheOlescence;
var entities = await this.GetQuery().ToArrayAsync(token);
cacheEntry.Value = entities;
return entities.AsEnumerable();
});
return cache;