Hibernate Object/Grid Mapper (OGM) aims at providing Java Persistence (JPA) support for NoSQL solutions. It reuses Hibernate Core's engine but persists entities into a NoSQL data store instead of a relational database. It reuses the Java Persistence
neo4j-dotnet-ogm
NET的Neo4j对象图映射库。
安装
Install-Package Neo4jOgm -Version 0.21.8
快速开始
声明域实体
[ NeoNodeEntity ( " person " , " p " )]
public class Person
{
[ NeoNodeId ]
public long ? Id { get ; set ; }
public string Name { get ; set ;