C# 클래스 Framework.Migrator.Fluent.ChangeTable

Provides fluent interface for change table expressions.
상속: Table
파일 보기 프로젝트 열기: coreframework/Core-Framework 1 사용 예제들

공개 메소드들

메소드 설명
AddColumn ( String columnName ) : Column

Adds the column with name specified.

ChangeColumn ( String columnName ) : Column

Changes the column with name specified.

ChangeTable ( String tableName ) : System

Initializes a new instance of the ChangeTable class.

RemoveColumn ( String columnName ) : Column

Removes the column with name specified.

RemoveForeignKey ( String reference ) : ForeignKey

Removes the foreign key with name specified.

메소드 상세

AddColumn() 공개 메소드

Adds the column with name specified.
public AddColumn ( String columnName ) : Column
columnName String Name of the column.
리턴 Column

ChangeColumn() 공개 메소드

Changes the column with name specified.
public ChangeColumn ( String columnName ) : Column
columnName String Name of the column.
리턴 Column

ChangeTable() 공개 메소드

Initializes a new instance of the ChangeTable class.
public ChangeTable ( String tableName ) : System
tableName String Name of the table.
리턴 System

RemoveColumn() 공개 메소드

Removes the column with name specified.
public RemoveColumn ( String columnName ) : Column
columnName String Name of the column.
리턴 Column

RemoveForeignKey() 공개 메소드

Removes the foreign key with name specified.
public RemoveForeignKey ( String reference ) : ForeignKey
reference String Name of the relationship.
리턴 ForeignKey