I'm using Mongo 2.2. How can I access the query info using C#?
Currently have the following to get my data:
var records = _collection.Find(filters).ToList<Vehicle>();
I was trying to add a .explain() similarily to what I can do in Robomongo at the end of my query:
var records = _collection.Find(filters).explain();
However, it does not exist, I believe because its not a cursor. Does anyone know how I can get this query data in C#?