I have seen NoSQLBooster but this only supports "find" function in its visual query builder.
Is there and mongodb tool where we can use aggregation pipeline functions and functions like "set" "findandmodify" visually ?
eventually i want to generate mongoddb c# code.
can we select properties and what we want and it could generate queries and c# code like
var update = Builders<xxxx>.Update.Set(xxxx, xxxxx);
await collection.UpdateManyAsync(filter, update);