If you do a lot of work with MongoDB from .NET, this code should look familiar: var query = from p in mongo.People where p.Age > 20 && p.Name.Length >= 2 orderby p.Age descending select p; But could you answer these questions? What exactly does it do on the server? Is it using an index […]