Interface IDeleteForeignKeyForeignColumnBuilder
Builds a Delete expression.
Namespace: Umbraco.Cms.Infrastructure.Migrations.Expressions.Delete.ForeignKey
Assembly: Umbraco.Infrastructure.dll
Syntax
public interface IDeleteForeignKeyForeignColumnBuilder : IFluentBuilder
Methods
View SourceForeignColumn(string)
Specifies the foreign column.
Declaration
IDeleteForeignKeyToTableBuilder ForeignColumn(string column)
Parameters
| Type | Name | Description |
|---|---|---|
| string | column | The name of the foreign column. |
Returns
| Type | Description |
|---|---|
| IDeleteForeignKeyToTableBuilder | An IDeleteForeignKeyToTableBuilder to continue building the foreign key deletion expression. |
ForeignColumns(params string[])
Specifies the foreign columns.
Declaration
IDeleteForeignKeyToTableBuilder ForeignColumns(params string[] columns)
Parameters
| Type | Name | Description |
|---|---|---|
| string[] | columns |
Returns
| Type | Description |
|---|---|
| IDeleteForeignKeyToTableBuilder |