Models the information of a table column.
The maximum length of a character column.
public Nullable<Int32> CharacterLength { get; set; }
A collection of constraints for this column.
public List<ColumnConstraint> Constraints { get; set; }
Data type of the column.
public DbType DataType { get; set; }
For autonumeric columns this specifies the increment value.
public Int32 IdentityIncrement { get; set; }
For autonumeric columns this specifies the seed value.
public Int64 IdentitySeed { 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()