Click or drag to resize
SimpleGraphStatement Constructor (String, Object)
Creates a new instance of SimpleGraphStatement using a query with named parameters.

Namespace: Dse.Graph
Assembly: Dse (in Dse.dll) Version: 2.3.0
Syntax
C#
public SimpleGraphStatement(
	string query,
	Object values
)

Parameters

query
Type: SystemString
The graph query string.
values
Type: SystemObject
An anonymous object containing the parameters as properties.
Examples
new SimpleGraphStatement("g.V().has('name', myName)", new { myName = "mark"})
See Also