我想使用Neo4jClient动态添加Node的Lable和属性 我尝试像下面的代码一样解决它,但它不起作用。
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; }
}
}
我想将Data的属性导入到node的属性中。 Thx Z.Tom
答案 0 :(得分:0)
好的,首先,Neo4j
默认不支持Dictionary
元素(例如Hashtable
),因此您需要自定义序列化程序,例如作为这个问题的一个:Can Neo4j store a dictionary in a node?
了解这一点,无法按照您尝试的方式设置Properties
Hashtable
中的值。 不可能。
所以,现在不用了,让我们来看看Cypher
。
所以,cypher明智 - 我不是100%肯定你正在尝试做什么,但是我觉得这样的事情就是你之后的事情:< / p>
var data = new Data{Type="Vegetable"};
data.Properties.Add("name", "zhai");
client.Cypher
.Create("(person {personParam})")
.WithParam("personParam", data)
.ExecuteWithoutResults();
这会将节点放入数据库,但是您将 无法通过Properties
属性中的任何值进行查询。
我认为你应该花一点时间阅读Cypher手册来了解你正在尝试做什么,因为我认为这会让你更进一步。