Table of Contents

Class DataBlockQueryResponse

Namespace
Datafication.Server.Core.Models
Assembly
Datafication.Server.Core.dll

Response model for query operations.

public class DataBlockQueryResponse
Inheritance
object
DataBlockQueryResponse

Properties

Columns

Gets or sets the column names in the result.

public List<string>? Columns { get; set; }

Property Value

List<string>

Data

Gets or sets the query results.

public object? Data { get; set; }

Property Value

object

Messages

Gets or sets any warnings or informational messages.

public List<string>? Messages { get; set; }

Property Value

List<string>

Metadata

Gets or sets metadata about the query execution.

public QueryExecutionMetadata? Metadata { get; set; }

Property Value

QueryExecutionMetadata

ReturnedRows

Gets or sets the number of rows returned in this response.

public int ReturnedRows { get; set; }

Property Value

int

TotalRows

Gets or sets the total number of rows before pagination.

public int TotalRows { get; set; }

Property Value

int