So I am attempting to pull more than 10,000 items into a list after loading them into a cache. Currently, Linq is unable to pull more than 10k items.
Processing Method
IRedisCollection<AmtxDetail> rawDetailCache = redisConnectionProvider.RedisCollection<AmtxDetail>();
IList<AmtxDetail> details = await rawDetailCache.ToListAsync();
What am I missing here?