Class FluentGraphStatement
This statement is used by the C# Graph extension. It should not be used directly by users as it requires
specific types, serializers and deserializers that the C# Graph Extension provides automatically.
Inheritance
FluentGraphStatement
Assembly: Cassandra.dll
Syntax
public class FluentGraphStatement : GraphStatement, IGraphStatement
Constructors
FluentGraphStatement(object, IReadOnlyDictionary<GraphProtocol, IReadOnlyDictionary<Type, IGraphSONSerializer>>)
Declaration
public FluentGraphStatement(object queryBytecode, IReadOnlyDictionary<GraphProtocol, IReadOnlyDictionary<Type, IGraphSONSerializer>> customSerializers)
Parameters
FluentGraphStatement(object, IReadOnlyDictionary<GraphProtocol, IReadOnlyDictionary<Type, IGraphSONSerializer>>, IReadOnlyDictionary<GraphProtocol, IReadOnlyDictionary<string, IGraphSONDeserializer>>)
Declaration
public FluentGraphStatement(object queryBytecode, IReadOnlyDictionary<GraphProtocol, IReadOnlyDictionary<Type, IGraphSONSerializer>> customSerializers, IReadOnlyDictionary<GraphProtocol, IReadOnlyDictionary<string, IGraphSONDeserializer>> customDeserializers)
Parameters
Properties
QueryBytecode
Bytecode of the query represented by this statement.
Declaration
public object QueryBytecode { get; }
Property Value
Implements