Models the information of a table column.
Default constructor
public Void TableColumn()
Caption.
public String Caption { get; set; }
The maximum length of a character column.
public Nullable<Int32> CharacterLength { get; set; }
A collection of constraints for this column.
public ColumnConstraintCollection Constraints { get; set; }
Indicates if the column is autonumeric.
public Boolean IsAutonumeric { get; set; }
Indicates if the column is nullable.
public Boolean IsNullable { get; set; }
Name of the column.
public String Name { get; set; }
Position of the column in the table.
public Int32 Position { get; set; }
Numeric precision.
public Nullable<Int32> Precision { get; set; }
Numeric scale.
public Nullable<Int32> Scale { get; set; }
Returns a textual representation of the TableColumn.
public String ToString()