I am using mongodb with the C# driver. I have an object (document) with a property of type List<ObjectId> (say arrProp).
I want to find all documents that the arrProp contains at least one element from a given array (another List<ObjectId>).
Is there a way to get the result in a single query?