📌  相关文章
📜  删除多个数据库 mongo - C# 代码示例

📅  最后修改于: 2022-03-11 14:49:03.199000             🧑  作者: Mango

代码示例2
// if you have a list of Databases to delete then you may run the following command?


['db1', 'db2', 'db3', 'db4'].forEach(function(i){db.getSiblingDB(i).dropDatabase()})