In the DocumentDB documentation docs, I find inserting C # objects.
// Create the Andersen family document. Family AndersenFamily = new Family { Id = "AndersenFamily", LastName = "Andersen", Parents = new Parent[] { new Parent { FirstName = "Thomas" }, new Parent { FirstName = "Mary Kay"} }, IsRegistered = true }; await client.CreateDocumentAsync(documentCollection.DocumentsLink, AndersenFamily);
In my case, I get json strings from the application client and would like to insert them into DocumentDB without deserializing them. Could not find any examples of doing something similar.
Any help is truly appreciated.
thanks
Arnab source share