我有一个包含以下" schema"的集合:
{
"_id": { "$oid": "543cd94799c3ff7a2850a1b6" },
"Type": 1,
"Information": [
{
"Type" : 2,
"Colors": [],
"Heights": [],
"Widths": []
}
]
}
我有" Colors"," Heights"," Widhts"嵌套在数组中的数组"信息"。
我正在尝试使用以下更新查询更新集合中的某些文档:
var query = Query.And(Query.Exists(Entity.INFORMATION + "." + Information.COLORS),
Query.Exists(Entity.INFORMATION + "." + Information.HEIGHTS),
Query.Exists(Entity.INFORMATION + "." + Information.WIDTHS),
Query.EQ(Entity.TYPE, typeId),
Query.ElemMatch(Entity.INFORMATION, Query.EQ(Information.TYPE, informationTypeId)));
var update = MongoDB.Driver.Builders.Update.Set(Entity.INFORMATION + ".$." + Information.WIDTHS, new BsonArray(new Width[0]))
.Set(Entity.INFORMATION + ".$." + Information.COLORS, new BsonArray(new Color[0]))
.Set(Entity.INFORMATION + ".$." + Information.HEIGHTS, new BsonArray(new Height[0]))
.Set(Entity.INFORMATION + ".$." + Information.TYPE, BsonNull.Value);
Collection.Update(query, update, UpdateFlags.Multi);
似乎只有第一份文件受到影响。其余的不受影响。
如何修复此更新查询以适用于其余文档?我使用过UpdateFlags.Multi但没有运气..
我想将信息类型设置为null并清除信息数组中的嵌套数组。
答案 0 :(得分:0)
好的,我已经压平了信息,现在我只有一个级别的数组。
所以,现在正在努力。
谢谢大家。