我在 RestSharp 的 RestClient中使用 POST 方法和 JSON-Patch 操作时遇到问题(请参阅 RFC: https ://www.rfc-editor.org/rfc/rfc6902)。AddBody() 包含如下内容:
request.AddBody(new { op = "add", path = "/Resident", value = "32432" });
它出错了。我不知道如何json-patch
在体内传递操作。我已经尽我所能。这个问题有解决方案吗?