Skip to content
sonyarouje edited this page Feb 2, 2012 · 12 revisions

Neo4jD is a light weight .NET client to access Neo4j graph database. The library is still under development.

Create a Node

Node sony=new Node
sony.SetProperty("FirstName", "Sony").SetProperty("LastName", "Arouje").Create();
Node viji= new Node();
viji.SetProperty("FirstName", "Viji").SetProperty("LastName", "P").Create();
Relationship relationship= sony.CreateRelationshipTo(viji, "wife");

Get a Node

Node sony=Node.Get(1);
Clone this wiki locally