C# Class DotNetWorkQueue.Transport.SqlServer.Schema.Column

Represents a column in SQL server
Show file Open project: blehnen/DotNetWorkQueue Class Usage Examples

Private Properties

Property Type Description

Public Methods

Method Description
Clone ( ) : Column

Clones this instance.

Column ( ) : System

Initializes a new instance of the Column class.

Column ( string name, ColumnTypes type, bool @null, Default @default ) : System

Initializes a new instance of the Column class.

Column ( string name, ColumnTypes type, byte precision, int scale, bool @null, Default @default ) : System

Initializes a new instance of the Column class.

Column ( string name, ColumnTypes type, int length, bool @null, Default @default ) : System

Initializes a new instance of the Column class.

Script ( ) : string

Translates this column into SQL script.

Method Details

Clone() public method

Clones this instance.
public Clone ( ) : Column
return Column

Column() public method

Initializes a new instance of the Column class.
public Column ( ) : System
return System

Column() public method

Initializes a new instance of the Column class.
public Column ( string name, ColumnTypes type, bool @null, Default @default ) : System
name string The name.
type ColumnTypes The type.
@null bool
@default Default
return System

Column() public method

Initializes a new instance of the Column class.
public Column ( string name, ColumnTypes type, byte precision, int scale, bool @null, Default @default ) : System
name string The name.
type ColumnTypes The type.
precision byte The precision.
scale int The scale.
@null bool
@default Default
return System

Column() public method

Initializes a new instance of the Column class.
public Column ( string name, ColumnTypes type, int length, bool @null, Default @default ) : System
name string The name.
type ColumnTypes The type.
length int The length.
@null bool
@default Default
return System

Script() public method

Translates this column into SQL script.
SQL data type is not supported.
public Script ( ) : string
return string