-
Notifications
You must be signed in to change notification settings - Fork 6
Home
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);
Out flowing Relationship
IList<Node> outNodes=sony.Out()
You will get more insight of the current functionality by going through the NUnit tests.