[WIP] Add debug output of entities

This commit is contained in:
Matija Koželj 2023-01-24 18:51:59 +01:00
parent 9381a4e4c6
commit 018a48dd65

View File

@ -82,6 +82,8 @@ public abstract class EntityCacheClient<TEntity, TPrimaryKey> : StatefulCacheCli
if (context.GetService<IStorageProvider>() is not IStorageProvider provider)
return default;
var entities = provider.Open<TEntity>().AsEntities();
return await (from dc in provider.Open<TEntity>()
where TypeComparer.Compare(dc.Id, id)
select dc).AsEntity();