Table of Contents

Class QueryAggregationRequest

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

Represents a simple aggregation request (returns single row).

public class QueryAggregationRequest
Inheritance
object
QueryAggregationRequest

Properties

Columns

Gets or sets the column names to aggregate.

public string[]? Columns { get; set; }

Property Value

string[]

Percentile

Gets or sets the percentile value (0-100) when Type is "percentile".

public double? Percentile { get; set; }

Property Value

double?

Type

Gets or sets the aggregation type. Supported values: min, max, mean, sum, count, size, stddev, variance, percentile

public string Type { get; set; }

Property Value

string