请你帮我解决一下c#中的查询。
我在MongoDB中有Collection“Test”。
在此集合中,每个BsonDocument都有1个自定义字段“FCount” 在C#中,我有方法,他需要_id。
我在Mongo Console中创建了正确的查询
db.Test.find({_id: "1bvg4223"},{FCount: 1, _id: null}).pretty()
但在C#中:
database.GetCollection("Test").Find(Query.EQ("_id", "1bvg4223"))
// I don`t know how i can get field "FCount" in this query
所以我的问题:如何在C#方法中获得FCount?