You are not logged in.
Pages: 1
Hello,
I wrote an application that has a TMemo where the user can directly write a find command to execute over a collection.
But I want to let the user write the command in the same way you write in mongo shell.
db.orders.find("item.category": 10).sort( { "item.category": 1, "item.type": 1 } ).limit(10)
Can I do this using SynMongoDB?
I can't use TMongoCollection.FindDoc because in MongoDb 3.2 the sort only can be applied to a cursor.
Best regards
Pages: 1