I'm trying to programmatically save information to a Neo4J DB using the Neo4Jclient.
I've been trying to follow the examples but it doesn't seem to be working.
I've created a database connection which seems to work, but my code won't compile due to the below line..
public void SaveNewRootItem(string child)
{
client = new GraphClient(new Uri([ConnectionStringhere]));
client.Connect();
client.Cypher
.Create("(m:LinkItem {child})")
.WithParams("child", child);
}
According to the examples on the wiki for the opensource repo I should be providing parameterised information in "WithParams".
What am I doing wrong?