tags:

views:

288

answers:

1

Hi,

Is there a C# version/binding for neo4j? It looks like exactly what I want, but I'm working in C# on .net.

thanks

+2  A: 

I think you best bet at the moment is to use the REST server. There's a blog post with a proof of concept .NET client: Neo4j .NET Client over HTTP using REST and json.

Update: Now there's actually two different .Net Neo4j REST clients:

nawroth
oh, I was hoping for something with a C# client library/bindings. I don't suppose you know of something similar to Neo4j in the C# world?
Greg
not sure about similarity to Neo4j, but have a look over here for a list of graph databases: http://graph-database.org/
nawroth
Here's a getting started: http://blog.noop.se/archive/2010/04/16/neo4j-net-client-over-http-using-rest-and-json.aspx
Quandary