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 SourceParameters
The Ion binary or text value for each parameter.
Declaration
ValueHolder[] Parameters { get; }
Property Value
Type | Description |
---|---|
Amazon.QLDBSession.Model.ValueHolder[] |
Statement
The statement string to execute.
Declaration
string Statement { get; }
Property Value
Type | Description |
---|---|
System.String |
Methods
| Improve this Doc View SourceDeserialize(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. |