Interface IInsertBuilder
Builds an Insert expression.
Namespace: Umbraco.Cms.Infrastructure.Migrations.Expressions.Insert
Assembly: Umbraco.Infrastructure.dll
Syntax
public interface IInsertBuilder : IFluentBuilder
Methods
View SourceIntoTable(string)
Specifies the table into which data will be inserted.
Declaration
IInsertIntoBuilder IntoTable(string tableName)
Parameters
| Type | Name | Description |
|---|---|---|
| string | tableName | The name of the table to insert into. |
Returns
| Type | Description |
|---|---|
| IInsertIntoBuilder | An IInsertIntoBuilder to continue building the insert expression. |