Class ExecuteSqlStatementResponse<T>
Represents a response from executing an SQL statement, including a list of items of type T.
Inherited Members
Namespace: Innovt.Cloud.Table
Assembly: Innovt.Cloud.dll
Syntax
public class ExecuteSqlStatementResponse<T> where T : class
Type Parameters
Name | Description |
---|---|
T | The type of items in the response. |
Properties
| Edit this page View SourceItems
Gets or sets a list of items of type T returned by the SQL statement execution.
Declaration
public IList<T> Items { get; set; }
Property Value
Type | Description |
---|---|
IList<T> |
NextToken
Gets or sets a token that can be used for paginating results if necessary.
Declaration
public string NextToken { get; set; }
Property Value
Type | Description |
---|---|
string |