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
A workaround is to go back to the old OPENJSON method of querying:
optionsBuilder.UseParameterizedCollectionMode(ParameterTranslationMode.Parameter);
Your code
// Fill a Test table with ~100k entries.List<int>items=[];for(inti=0;i<4000;i++){items.Add(i);_=awaitcontext.Test.Where(x =>items.Contains(x.Id)).Select(x =>x.Id).ToListAsync();}