Table of Contents

Class QueryFillNullsRequest

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

Represents a fill nulls request.

public class QueryFillNullsRequest
Inheritance
object
QueryFillNullsRequest

Properties

Columns

Gets or sets the column names to fill nulls in. If null or empty, applies to all columns.

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

Property Value

string[]

ConstantValue

Gets or sets the constant value when Method is "constant".

public object? ConstantValue { get; set; }

Property Value

object

Method

Gets or sets the fill method. Supported values: forward, backward, constant, mean, median, mode, interpolate

public string Method { get; set; }

Property Value

string