Show / Hide Table of Contents

Interface IQuery<T>

An object encapsulating a query which can be executed against QLDB. The generic type T is the type of each document returned from the database.

Namespace: Amazon.QLDB.Driver
Assembly: Amazon.QLDB.Driver.dll
Syntax
public interface IQuery<T>
Type Parameters
Name Description
T

The return type of each document returned from the database.

Properties

| Improve this Doc View Source

Parameters

The Ion binary or text value for each parameter.

Declaration
ValueHolder[] Parameters { get; }
Property Value
Type Description
Amazon.QLDBSession.Model.ValueHolder[]
| Improve this Doc View Source

Statement

The statement string to execute.

Declaration
string Statement { get; }
Property Value
Type Description
System.String

Methods

| Improve this Doc View Source

Deserialize(ValueHolder)

Given an Ion ValueHolder, deserialize it into an object of type T.

Declaration
T Deserialize(ValueHolder ionValueHolder)
Parameters
Type Name Description
Amazon.QLDBSession.Model.ValueHolder ionValueHolder

The ValueHolder object containing Ion data to be deserialized.

Returns
Type Description
T

The object of type T.

  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX