Details
-
Bug
-
Resolution: Cannot Reproduce
-
Blocker - P1
-
None
-
2.0.1
-
None
-
None
Description
This command:
client.DropDatabaseAsync(dbName).Wait()
|
Doesn't drop the database. I can drop it from the shell just fine.
The following works just fine:
var command = new BsonDocument
|
{
|
{"dropDatabase", 1},
|
};
|
db.RunCommandAsync<BsonDocument>(command).Wait();
|
This leads me to believe there's problem with the DropDatabaseAsync method.