You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Casting an IRedisCollection to IQueryable causes chunk info to get dropped
string[] comps = ["1", "2", "3", "4"];
var users = provider.RedisCollection<User>(500) as IQueryable<User>;
var res = await users.Where(x => comps.Contains(x.CompanyId));
Run a profiler whilst that is executed and it it pages in chunks of 100.
The text was updated successfully, but these errors were encountered:
CormacLennon
changed the title
Casting IRedisCollection as IQueryable causes Chuck info to get dropped
Casting IRedisCollection as IQueryable causes Chunk info to get dropped
Jun 20, 2024
Casting an IRedisCollection to IQueryable causes chunk info to get dropped
Run a profiler whilst that is executed and it it pages in chunks of 100.
The text was updated successfully, but these errors were encountered: