C# Class Gymnastika.Data.Migration.Commands.AlterColumnCommand

Inheritance: ColumnCommand
Show file Open project: weiqiyiji/Gymnastika Class Usage Examples

Public Methods

Method Description
AlterColumnCommand ( string tableName, string columnName ) : System.Data
Unlimited ( ) : AlterColumnCommand
WithLength ( int length ) : AlterColumnCommand
WithType ( DbType dbType ) : AlterColumnCommand
WithType ( DbType dbType, byte precision, byte scale ) : AlterColumnCommand
WithType ( DbType dbType, int length ) : AlterColumnCommand

Method Details

AlterColumnCommand() public method

public AlterColumnCommand ( string tableName, string columnName ) : System.Data
tableName string
columnName string
return System.Data

Unlimited() public method

public Unlimited ( ) : AlterColumnCommand
return AlterColumnCommand

WithLength() public method

public WithLength ( int length ) : AlterColumnCommand
length int
return AlterColumnCommand

WithType() public method

public WithType ( DbType dbType ) : AlterColumnCommand
dbType DbType
return AlterColumnCommand

WithType() public method

public WithType ( DbType dbType, byte precision, byte scale ) : AlterColumnCommand
dbType DbType
precision byte
scale byte
return AlterColumnCommand

WithType() public method

public WithType ( DbType dbType, int length ) : AlterColumnCommand
dbType DbType
length int
return AlterColumnCommand