Convert cypher query to c#
问题 I have two tables: User Name Surname Phone number type_of_number var myList = ((IRawGraphClient) client).ExecuteGetCypherResults<**i_need_class_to_save_it**>( new CypherQuery("match (a:User)-[r]->(b:Phone) return a,collect(b)", null, CypherResultMode.Set)) .Select(un => un.Data); How create correct collection to save data? 回答1: It sounds like you haven't read https://github.com/Readify/Neo4jClient/wiki/cypher or https://github.com/Readify/Neo4jClient/wiki/cypher-examples. You really should