InsertStep

Classes > Nimblesite.Lql.Core > InsertStep

Represents an INSERT operation.

public sealed class InsertStep : StepBase, IStep

Constructors

InsertStep

public InsertStep(string table, IEnumerable<string> columns)

Initializes a new instance of the `` class.

Parameter Type Description
table String The target table name.
columns String> The columns to insert into.

Properties

Table

public string Table { get; init; }

Gets the target table name.

Columns

public ImmutableArray<string> Columns { get; }

Gets the column names for the insert.