如何在C#中从mongo游标获取字段的最大值

时间:2013-06-21 06:37:45

标签: c# mongodb

完整的方法应该是通用的,如

public string strGetMaxValue(string strDBName, string strCollectionName, string strKey)
{
 // in this method if pass some prms it should give max value
}

我试过的那个是

string strMaxValue = "";            
        MongoServer objServer = this.ConnectToServer();
        if ((strDBName != null || strDBName != "") && (strCollectionName != null || strCollectionName != ""))
        {
            string[] strArrays = new string[1];
            strArrays[0] = strKey;
            //MongoCursor<BsonDocument> objCursor = objServer.GetDatabase(strDBName).GetCollection(strCollectionName).Find(query).SetSortOrder(SortBy.Descending(strArrays)).SetLimit(1);

            var objCursor = objServer.GetDatabase(strDBName).GetCollection(strCollectionName).FindAll().SetSortOrder(SortBy.Descending(strArrays)).SetLimit(1).ToArray();


        }

在那个objCursor我得到了我需要的那份文件。 我想提取该字段值,需要将其作为返回参数发送。

该方法应该是通用的,因此键值也可以是嵌套文档中的字段。

如何实现这一目标。

1 个答案:

答案 0 :(得分:0)

您要查找的方法是SetFields(params string[] fields) - 可以在游标上调用它。它会将结果集限制为您传入的字段(数组)以及id。然后,您可以使用[]

为该字段编制索引
        var result = server
            .GetDatabase(strDBName)
            .GetCollection(strCollectionName)
            .FindAll()
            .SetSortOrder(SortBy.Descending(new [] {strKey}))
            .SetFields(new [] {strKey}) // The way to wrap something in an array for reference
            .SetLimit(1)
            .FirstOrDefault(); // Will return null if there are no rows

        // There is a chance that we have no results
        if (result != null)
            // You might want to make sure this is a string / add the datatype
            // as a Generic T to your function
            return result[strKey].AsString;
        else
            return null;