Hi, App42 teams:
If i have a document, his content is : {"UserName":"Tom","UserName":"Jim","UserName":"Han", "UserName":"ste"}
Now, I want to insert one friends:"UserName":"Han2",
make his content is {"UserName":"Tom","UserName":"Jim","UserName":"Han", "UserName":"ste","UserName":"Han", "UserName":"ste",
"UserName":"Han2"}
My question: I expect I can insert one key and one valve without update all the document's content.
i.e. Dictionary<string, object> newJsonDoc = new Dictionary<string, object>();
newJsonDoc.Add("UserName", "Han2");
i only want to insert newJsonDoc into the old doc.
What can I do?
Another question: Dose the json document have length limit?
Thanks for your reply!