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

Adds new column to existing table.
상속: Column
파일 보기 프로젝트 열기: coreframework/Core-Framework

공개 메소드들

메소드 설명
AddColumn ( DbType columnType, String columnName, String tableName ) : System

Initializes a new instance of the AddColumn class.

AddColumn ( String columnName, String tableColumnName ) : System

Initializes a new instance of the AddColumn class.

Migrate ( ITransformationProvider database ) : void

Adds new column to existing table.

메소드 상세

AddColumn() 공개 메소드

Initializes a new instance of the AddColumn class.
public AddColumn ( DbType columnType, String columnName, String tableName ) : System
columnType DbType Type of the column.
columnName String Name of the column.
tableName String Name of the table.
리턴 System

AddColumn() 공개 메소드

Initializes a new instance of the AddColumn class.
public AddColumn ( String columnName, String tableColumnName ) : System
columnName String Name of the column.
tableColumnName String Name of the table.
리턴 System

Migrate() 공개 메소드

Adds new column to existing table.
public Migrate ( ITransformationProvider database ) : void
database ITransformationProvider The database.
리턴 void