Class QueryGroupByRequest
- Namespace
- Datafication.Server.Core.Models
- Assembly
- Datafication.Server.Core.dll
Represents a GroupBy with aggregations request.
public class QueryGroupByRequest
- Inheritance
-
objectQueryGroupByRequest
Properties
Aggregations
Gets or sets the aggregations to perform on grouped data. Key: column name, Value: aggregation type (min, max, mean, sum, count, stddev, variance)
public Dictionary<string, string>? Aggregations { get; set; }
Property Value
- Dictionary<string, string>
Column
Gets or sets the column name to group by.
public string Column { get; set; }
Property Value
- string
ResultColumnNames
Gets or sets custom names for result columns. Key: original column name, Value: custom result column name
public Dictionary<string, string>? ResultColumnNames { get; set; }
Property Value
- Dictionary<string, string>