本文介绍了如何在c#中为MongoDB构建更新查询的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
以下是应为其构建更新查询的临时数据
Here is a temp data for which a update query should be built
{
"ID" : 2014,
"Reason" : "Message",
"Modules" : [
"AA","BB","CC"
],
"Script" : {
"Title":"Hello"
"Informational" : "Hi How are you"
}
}
其中Modules []的大小可能不同而脚本下的Title是可选的。
where Modules[] may vary in size and Title under scripts is optional.
推荐答案
这篇关于如何在c#中为MongoDB构建更新查询的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!