I'm trying to assign data from Neo4j database to a variable in C# according to available examples like so:
var born = graphClient.Cypher
.Match("(person:Person)")
.Where((Person person) => person.name == "Tom Hanks")
.Return(person => person.As<Person>().born)
.Results;
But when i try to print the value out :
Console.WriteLine(born);
I get this in console :
System.Collections.Generic.List`1[System.Int32]
What I'm doing wrong?