C# Class YesSql.Core.Sql.Schema.ColumnCommand

Inheritance: TableCommand
Show file Open project: sebastienros/yessql

Public Methods

Method Description
ColumnCommand ( string tableName, string name ) : System.Data
Unlimited ( ) : ColumnCommand
WithDefault ( object @default ) : ColumnCommand
WithLength ( int length ) : ColumnCommand
WithType ( DbType dbType ) : ColumnCommand

Method Details

ColumnCommand() public method

public ColumnCommand ( string tableName, string name ) : System.Data
tableName string
name string
return System.Data

Unlimited() public method

public Unlimited ( ) : ColumnCommand
return ColumnCommand

WithDefault() public method

public WithDefault ( object @default ) : ColumnCommand
@default object
return ColumnCommand

WithLength() public method

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

WithType() public method

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