How do I apply an array values to Mongodb find() in ASP.net
I want to retrieve the specific data using an array-values, but I don't know how to deal with it. URL is like http://localhost/api/data?sym=aa&bb&cc DB documents are like: {"symbol":"aa","price":1.1} {"symbol":"bb","price":1.2} {"symbol":"cc","price":1.3} {"symbol":"dd","price":1.4} {"symbol":"ee","price":1.5} the expected result is: [ {"symbol":"aa","price":1.1} {"symbol":"bb","price":1.2} {"symbol":"cc","price":1.3}…