Description
Hello.
I use mongocharpdriver with legacy driver.
Code like this:
var result = objectsCollection.AsQueryable().Select(o => o.Id).ToList(); |
was executed very slowly because it is running on client side and deserialising all objects in collection.
Why linq query like this do not executed on server side?