我正在尝试将具有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查询,例如在this issue中。
但是我的查询包含标识符:
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。
我的问题有什么解决办法吗?
非常感谢。
最佳答案
最后,我解决了这个问题。我创建了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没有任何问题。
关于c# - 如何将具有LUUID值的查询反序列化到BsonDocument,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/60639978/