Object Mapping in the Neo4j Driver for .NET Using new functionality, it is possible to turn query results directly into objects with minimal boilerplate.
Before now, the process of turning the results of a Cypher query executed with the official driver into an object has been a laborious affair. It involved writing the same line of code over and over again, with small changes each time, to map individual parts of the record to the properties of the object. A new feature in the .NET driver, c...