I know that there is an official Object Graph Mapper for Java. However, I haven't found anything official for .NET so I searched for solutions from the community and I found two:
I haven’t used either,
Tangentially related that maybe useful I have written a nuget package that manages constraints and indexes via attributes on POCOs (Node, NodeKey, named Indexes).
Its also got a few extensions to ensure the graph is in line with whatever classes you have defined.
I also went the route of writing extensions that convert from Record to whatever POCO. It’s a different approach but I prefer to have full control over the cypher so tend to stay away from mappers.
I can share the nuget package links if you’d like. Repo currently isn’t public but I suppose it could be.
Full disclosure, I made Blueprint41 and I do not have experience with the other ORM's mentioned.
Blueprint41 is stable, and is used in some big enterprise software projects. It is open source (MIT license) and has free support over email. You can use it to do object to graph mapping for read/write operations and you can do Cypher queries (with IntelliSense support) for fast & complex read operations.
It also has support for refactoring you graph model, which automatically upgrades the data in you graph and updates your mapped objects so you get compile time errors for any code that was incompatible with your graph model changes.
At the moment Neo4j 3.x is supported and support for Neo4j 4.x is coming soon.
If you have any questions, just contact me via the blueprint41 website.
Note for those coming to this conversation later...
I have been evaluating Blueprint41, and there is so much to love! It handily beats anything else I have looked at.
The one notable limitation is that it doesn't seem to support relationship properties. Because relationship properties are required for many APOC PathFinding algorithms, consider whether that is a requirement for your project.
I have reached out to on their GitHub to see if they have a workaround on the relationship property issue. Will report back here.