Table of Contents

Class FromInsertExpression

Namespace
The.SQL.QIR.Statements
Assembly
Instagile.dll

Represents an insert expression that inserts from a subquery.

[MessagePackObject(false)]
public sealed record FromInsertExpression : InsertExpression, IEquatable<InsertExpression>, IEquatable<FromInsertExpression>
Inheritance
FromInsertExpression
Implements
Inherited Members

Constructors

FromInsertExpression(RecordList<string>, SelectStatement)

Represents an insert expression that inserts from a subquery.

public FromInsertExpression(RecordList<string> TargetColumns, SelectStatement SetFrom)

Parameters

TargetColumns RecordList<string>
SetFrom SelectStatement

Properties

SetFrom

[Key(1)]
public SelectStatement SetFrom { get; init; }

Property Value

SelectStatement

TargetColumns

[Key(0)]
public RecordList<string> TargetColumns { get; init; }

Property Value

RecordList<string>