使用c mongodb驱动程序时,如何创建复合条件?
这是有效的:

mongoCollection = mdb.GetCollection("person");
BsonElement be1=new BsonElement("surname","Jones");
qryPattern = new QueryDocument(new BsonElement[] {be1});
foreach (MongoDB.Bson.BsonDocument doc in mongoCollection.FindAs<MongoDB.Bson.BsonDocument>(qryPattern))
{
    rc.Append(doc.ToJson());
    rc.Append("<br />");
}

但是如何调整bsonement以支持复合条件,例如
BsonElement be1=new BsonElement("surname","[Jones,Smith]");

甚至
BsonElement be1=new BsonElement("surname","Jones");
BsonElement be2=new BsonElement("surname","Smith");
qryPattern = new QueryDocument(new BsonElement[] {be1,be2});

非常感谢

最佳答案

很简单,你应该使用Query.In

var names = new List<string>();
names.Add("Jones");
names.Add("Smith");
var query = Query.In("surname", BsonArray.Create(names));
collection.FindAs<BsonDocument>(query);

关于c# - C#中的MongoDB复合条件,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5516435/

10-09 21:47