Hello.
I use mongocharpdriver with legacy driver.
Code like this:
Unable to find source-code formatter for language: csharp. Available languages are: actionscript, ada, applescript, bash, c, c#, c++, cpp, css, erlang, go, groovy, haskell, html, java, javascript, js, json, lua, none, nyan, objc, perl, php, python, r, rainbow, ruby, scala, sh, sql, swift, visualbasic, xml, yaml
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?