My document look like :
"ID" : "fruit1",
"Keys" : [
["apple", "carrot"]
["banana"]
]
How do I query for Keys = "carrot" using MongoDB C# driver?
I can do it in shell :
db.multiArr.find({'Keys':{$elemMatch:{$elemMatch:{$in:['carrot']}}}})
I Found it from here : Querying an array of arrays in MongoDB
But I don't have succeed written it using c# driver.