Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有办法在每个查询的基础上在 Neo4jClient 中指定 Cypher 解析器的版本,如此处所述?
谢谢!
如果您将 Neo4jClient 更新到最新版本(> 1.0.0.604),您将可以访问“ParserVersion”方法,您可以使用如下方式:
client.Cypher .ParserVersion(1,9) .Start( new {n = All.Nodes} ) .Return<object>("n")
这创建了密码:
CYPHER 1.9 START n = nodes(*) RETURN n
如果您使用低于 1.9 的版本,您将CYPHER LEGACY开始使用。
CYPHER LEGACY