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

Inheritance: ColumnCommand
Afficher le fichier Open project: weiqiyiji/Gymnastika Class Usage Examples

Méthodes publiques

Méthode 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 méthode

public AlterColumnCommand ( string tableName, string columnName ) : System.Data
tableName string
columnName string
Résultat System.Data

Unlimited() public méthode

public Unlimited ( ) : AlterColumnCommand
Résultat AlterColumnCommand

WithLength() public méthode

public WithLength ( int length ) : AlterColumnCommand
length int
Résultat AlterColumnCommand

WithType() public méthode

public WithType ( DbType dbType ) : AlterColumnCommand
dbType DbType
Résultat AlterColumnCommand

WithType() public méthode

public WithType ( DbType dbType, byte precision, byte scale ) : AlterColumnCommand
dbType DbType
precision byte
scale byte
Résultat AlterColumnCommand

WithType() public méthode

public WithType ( DbType dbType, int length ) : AlterColumnCommand
dbType DbType
length int
Résultat AlterColumnCommand