此刻,我必须指定返回期间需要哪个类,有没有办法获取所有属性并创建动态/匿名对象。
public IEnumerable<Node> GetNodes()
{
Console.WriteLine($"Retrieving All Nodes from DB...");
try
{
return graphClient.Cypher
.Match($"(n:Node)")
.Return(t => new Node
{
Latitude = Return.As<double>("n.lat"),
Longitude = Return.As<double>("n.lon"),
Id = Return.As<string>("n.id"),
ValA = Return.As<long>("n.valA")
}).Results;
}
catch (Exception ex)
{
string error = $"ERROR (Get Node): {ex.ToString()}";
Console.WriteLine(error);
}
return null;
}
答案 0 :(得分:0)
您可以使用我为这个问题编写的解决方案:Neo4jClient How can I return all nodes, relationships and parameters for a dynamic graph
我会争论-如果这是您真正想要做的-您可能最好使用官方驱动程序(Neo4j-Driver)或实际上只是使用标准REST客户端并直接连接-但是-以上答案应该可以你去你想去的地方!
答案 1 :(得分:0)
尝试使用Neo4J official C# driver
和JSON.NET,如:
public static void Main()
{
string neo4jHostname = string.Empty, neo4jUsername = string.Empty, neo4jPassword = string.Empty;
IDriver driver = GraphDatabase.Driver(neo4jHostname, AuthTokens.Basic(neo4jUsername, neo4jPassword));
using (ISession session = driver.Session())
{
string query = "MATCH (n) RETURN n";
IStatementResult resultCursor = session.Run(query);
List<IRecord> res = resultCursor.ToList();
string values = JsonConvert.SerializeObject(res.Select(x => x.Values), Formatting.Indented);
List<JObject> nodes = JsonConvert.DeserializeObject<List<JObject>>(values);
}
}