如何在MongoDB C#Driver中使用“Or”语句?

时间:2016-09-19 12:44:19

标签: c# mongodb

我在MongoDB C#中查询以下内容时遇到问题。我在mongo客户端的代码是

db.collection.find( { $or: [ { quantity: { $lt: 20 } }, { price: 10 } ,{price:100},{name:"x"}] } )

但如何在C#中查询相同内容。 我能够查询以下mongo客户端代码语句

db.collection.find({type:"food"},{name:1,quantity:1})

作为

var match = new BsonDocument() { { "$match", new BsonDocument { {"type":"food" } } } };
var project = new BsonDocument(){ { "$project", new BsonDocument{ { "name", 1 } { "quantity", 1 } } } };
AggregateArgs AggregationPipeline = new AggregateArgs() { Pipeline = new[] { match, project } };
var aggregate = Collection.Aggregate(AggregationPipeline);

我正在使用Mongo C Sharp Driver 1.9.2。 感谢。

1 个答案:

答案 0 :(得分:1)

首先,添加一个构建器:

var builder = Builders<BsonDocument>.Filter;

然后像这样的过滤器:

var filter = builder.Lt("quantity", 20) | builder.Eq("price", 10) | other stuff)

最后是:

db.collection.Find(filter).ToList();