2

我正在尝试将带有 LUUID(或本例中的 NUUID)的过滤器反序列化为 BsonDocument:

var tmpQry = "{'ValueId': NUUID('ca7ac84f-18bf-42f0-b028-333ed144c549')";
var tmpBson = MongoDB.Bson.Serialization.BsonSerializer.Deserialize<BsonDocument>(tmpQry);

并得到一个错误:

System.FormatException: 'JSON reader was expecting a value but found 'NUUID'.'

我了解,LUUID 对 JSON 无效,但是否有可能从我的字符串中获取 BsonDocument?

在我的特殊情况下,我无法实现 MongoDB 嵌套 $elemMatch 查询,就像在这个问题中一样。但我的查询包含标识符:

db.getCollection('my_db').aggregate([
    {
        $match: {
            'Event.key_attributes': {
                $all: [
                    { '$elemMatch': { 'Type.Code': 'code1', 'ValueId': LUUID('00000000-0000-0000-0000-000000000001') } },
                    { '$elemMatch': { 'Type.Code': 'code2', 'ValueId': LUUID("00000000-0000-0000-0000-000000000002") } },
                    { '$elemMatch': { 'Type.Code': 'code3', 'ValueId': LUUID("00000000-0000-0000-0000-000000000003") } }
                ]
            }
        }
    },
    {
        $group: {
            '_id': '$$CURRENT.Event.type._id',
            'code': { '$last': '$$CURRENT.Event.type.Code' },
            'value': { '$sum': '$$CURRENT.Event.value' }
        }
    }
]);

,我什至无法将其反序列化为 BsonDocument。我的问题有解决办法吗?非常感谢。

4

2 回答 2

0

发帖人已经解决了他的问题,但对于那些后来出现这个问题的人:使用CSUUID('guid-string-here')CSharp 遗留格式。

于 2021-03-26T11:46:53.250 回答
0

最后,我解决了这个问题。我没有尝试从字符串序列化查询,而是创建了 BsonDocument 管道:

var filter = new BsonDocument {{
    "$match", new BsonDocument {{
        "Event.key_attributes", new BsonDocument {{
        "$all", new BsonArray().AddRange(limit.KeyAttributes.Select(ka => new BsonDocument(
            "$elemMatch", new BsonDocument().AddRange(new List<BsonElement>{
            new BsonElement("Type.Code", ka.Type.Code),
            new BsonElement("ValueId", ka.ValueId)
            })
        )).ToList())
        }}
    }}
}};


var group = new BsonDocument {{
    "$group", new BsonDocument().AddRange(new List<BsonElement>{
        new BsonElement("_id", "$$CURRENT.Event.type._id"),
        new BsonElement("code", new BsonDocument{{
            "$last", "$$CURRENT.Event.type.Code" }}),
        new BsonElement("value", new BsonDocument{{
            "$sum", "$$CURRENT.Event.value" }})
    })
}};

var pipeline = new BsonDocument[]
{
    filter,
    group
};

var result = collection.Aggregate<MyOutputClass>(pipeline).ToListAsync();

Guid 没有问题。

于 2020-03-31T08:08:40.213 回答