有人从Neo4jClient迁移到.Net Bolt驱动程序Neo4j 3

时间:2016-05-29 07:48:54

标签: neo4j neo4jclient

我们在Neo4jClient的引擎中使用neo4j, 有没有人从Neo4jClient迁移到Neo4j New Bolt Driver?

- 是否有基本和高级查询的示例?

- 有类似CypherFluentQuery的东西吗?

2 个答案:

答案 0 :(得分:1)

CypherFluentQuery没有neo4j-dotnet-driver,我所知道的唯一文件是github回购邮件的readme.mdneo4j docs

这将是一个很大的任务,从一个到另一个,主要是由于缺少CFQ和对象映射Neo4jClient给你。 :/

答案 1 :(得分:0)

我现在用这两个。 我充分利用了bolt协议和session / transaction mgmt,同时保持了CypherFluentQuery的实用性

所以它看起来像

private ICypherFluentQuery getSomething(){...}
private void execute(ICypherFluentQuery q){
    ...
    using (var s = _driver.Session())
    {
         ...
         s.Run(q.Query.QueryText, q.Query.QueryParameters);
         ...
    }
    ....
}