C# Class Neo4jClient.Cypher.All

Represents a star in a Cypher function, so All.Count() is equivalent to count(*). Only for use in return expressions like .Return(() => new { Count = All.Count() }), or start expressions like Start(new { n = All.Nodes }), but not to be called directly. (This class is just syntactic sugar for lambda expressions; there is no .NET implementation of its methods.)
Exibir arquivo Open project: Readify/Neo4jClient

Public Methods

Method Description
Count ( ) : long

Equivalent to count(*) http://docs.neo4j.org/chunked/stable/query-aggregation.html#_count

Method Details

Count() public static method

Equivalent to count(*) http://docs.neo4j.org/chunked/stable/query-aggregation.html#_count
public static Count ( ) : long
return long