How can you query RavenDB 4 to find documents which have a list of documents matching items from a input list?
The following used to work in RavenDB 3 but isn't supported in 4:
List<string> categories = new List<string>() { "C#", "java" });
var jobs = _session.Query<Job, Job_Index>.Where(j => j.Categories.Any(c => c.In(categories)));