{ id = "castle",
tags = [ "Red", "Black", "White" ], count:3 }
我的收集像上文一样,是一个具有独特项目和阵列的标记阵列。
I would like to add a tags and increment the tags count in a single query.
var query = Query.EQ("id", "castle");
var update = Update.AddToSetWrapped("tags", "White").Inc(count", 1); Photo.Update(query, update);
我预计,由于“白白”已经处于tag阵列中,因此不执行 $费,因此,这一询问的第一部分是无效的。
但实际结果为斜体字塔插入(更正),反面则得到增减(定点!)。
我想知道,我是否能够在上述个案中单挑出。
我正在使用中途C#司机。