Hi folks,
Neo4j Client now supports this:
.Return(a => a.Count())
.Return(() => All.Count())
Instead of:
.Return<long>("count(a)")
This is applicable for all functions that we support, and even custom Cypher text via Return.As<T>(string).
Yay!
-- Tatham
And now also supports retrieving individual properties instead of entire payloads:
.Return(a => a.As<Foo>().Bar)
-- Tatham