I am trying to completely delete the database (delete all collections and db itself).
When I do this with Robomongo (right click on the db -> drop database), it works as expected, but when using the driver with C # it just deletes all the db collections.
The method I call: MongoDatabase.Drop() . I am using MongoDB.Driver in .Net 4.5.
source share