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
TargetColumnsRecordList<string>SetFromSelectStatement
Properties
SetFrom
[Key(1)]
public SelectStatement SetFrom { get; init; }
Property Value
TargetColumns
[Key(0)]
public RecordList<string> TargetColumns { get; init; }