I am trying to traverse into a MongoDB Collection of the form :
{"_id":"lkashfhasdfhsdlafhlkjsdahf",
"
"Array":[{
"array_1":"17:00"}],
}
I want to get the array_1 in the document above I tried it using the following code in C#
result = Database.CollectionName.AsQueryable().Where(r => r.Array.array== array_inpit(Input) && condition2).ToList();
Expected Result : All the documents with the matching Array
Current Output : Error
Any help how should i proceed with this.