通过C#驱动程序执行mongodb shell脚本

时间:2011-08-09 21:04:29

标签: mongodb mongodb-.net-driver

我已阅读this个问题并且无法理解。是否有能力通过C#驱动程序执行任意mongodb shell脚本?

3 个答案:

答案 0 :(得分:15)

var mongoServer = MongoServer.Create("mongodb://<connectionstring>"); 
var database = mongoServer.GetDatabase("mydatabase"); 
string mycollectionCount database.Eval("function() { return db.mycollection.count(); }").ToString();

当您尝试更改属性类型时,这非常有用,例如:

string updateScript = @"
function () { 
    db.some_items.find().forEach(function(documentItem) {
        documentItem.some_collection.forEach(function(collectionItem) {
            if (typeof collectionItem.SomeProperty === 'number' 
                && Math.floor(collectionItem.someProperty) === collectionItem.someProperty)
            {
                collectionItem.someProperty = '' + collectionItem.someProperty;
            }
        });
        db.modules_elementary.save(documentItem);
    });

    return true;
}";
var updateResult = MongoReadDatabase.Database.Eval(updateScript).ToString();
if (updateResult != "true")
{
    throw new ApplicationException("Update of something failed");
}

此代码更改someProperty的类型,它是集合集合的元素:

some_items mongo collection:

{
   some_collection: [{ someProperty: 12, ....}],
   ....

}

答案 1 :(得分:3)

不,您需要使用类似Process.Start之类的东西启动Mongo shell进程,并传入您想要执行的命令,例如

mongo.exe mydb --eval "printjson(db.getCollectionNames())"

但是,C# driver可以完成shell所能做的大部分事情,所以如果可能的话,直接使用驱动程序要容易得多。

答案 2 :(得分:0)

我没试过,但我认为这就是你要找的东西:

MongoServer.RunAdminCommand方法(字符串) http://api.mongodb.org/csharp/1.1/html/a83249ae-0989-7c24-7240-4506053d83c1.htm