当前位置:  开发笔记 > 编程语言 > 正文

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

如何解决《通过C#驱动程序执行mongodbshell脚本》经验,为你挑选了1个好方法。

我已经读过这个问题并且不明白.是否有能力通过C#驱动程序执行任意mongodb shell脚本?



1> Dao..:
var mongoServer = MongoServer.Create("mongodb://"); 
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, ....}],
   ....

}

推荐阅读
放ch养奶牛
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有