不确定如何在c#中使用ElemMatch for MongoDb(最新的驱动程序版本)

前端之家收集整理的这篇文章主要介绍了不确定如何在c#中使用ElemMatch for MongoDb(最新的驱动程序版本)前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个以下格式的MongoDB集合:
{ 
    "_id" : ObjectId("5692a3397d7518330416f8e5"),"supertagname" : "xxx","inclusions" : [
        "test","blabla"
    ],"exclusions" : [ ]
}

我试图查询数组“包含”包含我正在寻找的值的所有文档.这是代码

string t = "blabla"; // the string value I am looking for

filter = Builders<BsonDocument>.Filter.ElemMatch(
    "inclusions",Builders<BsonDocument>.Filter.Eq("inclusions",t));

var matches = dictCollection.Find(filter).ToList();

foreach (BsonDocument doc in matches) {}

matches.count总是0.我做错了什么?

谢谢

解决方法

我认为你可以使用这样的过滤器更简单地做到这一点:
var filter = Builders<BsonDocument>.Filter.AnyEq("inclusions",t);

这将过滤包含数组包含您要查找的值的文档.

http://mongodb.github.io/mongo-csharp-driver/2.2/reference/driver/definitions/#array-operators

原文链接:https://www.f2er.com/csharp/243554.html

猜你在找的C#相关文章