我想使用Neo4jClient将Json序列化并将节点反序列化为Json,有没有人可以给我一个例外?
Thx Z.Tom
答案 0 :(得分:0)
希望自己也这样做,这个链接似乎很有帮助
how to use unwind in neo4jclient for updating data?
为你的json字符串创建var jsonPayload
然后
Client.Cypher
.Unwind(jsonPayload, "PersonData")
.WithParam("jsonpayload", jsonPayload)
.Merge("(p:Person { uid: PersonData.uid })")
.Set("p += PersonData.atts")
.ExecuteWithoutResults()
;