I have a quite big list of strings (30k+) and I need to check which ones do not exist on a table using Entity Framework Core.
Something like this but without sending a request per item to check:
var notFoundItems = hugeList.Where(c => !tableToCheck.Any(x => x.Id == c)).ToList();
I found an answer but using T-SQL