如何使用 Neo4jClient 动态添加节点属性?

How to add properties of node dynamically using Neo4jClient?

我想使用 Neo4jClient 动态添加节点的标签和属性 我尝试像下面的代码一样解决它,但它不起作用。

        client.Cypher
                 .Create("(person:Type)")
                 .WithParam("Type", "Vegetable")
                 .Set("person.property= \"zhai\"")
                 .WithParam("property", "name")
                 .ExecuteWithoutResults();

我的模特是

class Data
{
        public Data()
        {
            properties = new Hashtable();
        }

        private string type;

        public string Type
        {
            get { return type; }
            set { type = value; }
        }

        private Hashtable properties;

        public Hashtable Properties
        {
            get { return properties; }
            set { properties = value; }
        }

    }

我想将数据的属性导入到节点的属性中。 谢谢Z.Tom

好的,首先,Neo4j 默认情况下不支持 Dictionary 元素(如 Hashtable),因此您将需要一个自定义序列化程序,例如这个问题中的一个:Can Neo4j store a dictionary in a node?

了解这一点后,您不能按照您尝试的方式设置 Properties Hashtable 中的值。 不可能

所以现在已经不碍事了,让我们看看 Cypher

所以,密码明智 - 我不是 100% 确定你想做什么,但是我认为你想要的是这样的:

var data = new Data{Type="Vegetable"};
data.Properties.Add("name", "zhai");

client.Cypher
    .Create("(person {personParam})")
    .WithParam("personParam", data)
    .ExecuteWithoutResults();

这会将节点放入数据库,但是您将不能通过[=14中的任何值进行查询=] 属性.

我认为您应该花一些时间阅读 Cypher 手册以了解您正在尝试做什么,因为我认为这会让您走得更远。