Table of Contents

Class QueryMergeRequest

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

Represents a merge (join) request.

public class QueryMergeRequest
Inheritance
object
QueryMergeRequest

Properties

KeyColumn

Gets or sets the key column name in the source DataBlock.

public string KeyColumn { get; set; }

Property Value

string

Mode

Gets or sets the merge mode. Supported values: inner (default), left, right, full

public string Mode { get; set; }

Property Value

string

OtherDataBlockId

Gets or sets the ID of the other DataBlock to merge with.

public string OtherDataBlockId { get; set; }

Property Value

string

OtherKeyColumn

Gets or sets the key column name in the other DataBlock. If null, uses the same column name as KeyColumn.

public string? OtherKeyColumn { get; set; }

Property Value

string