Models a database table or view.
The name of the connection to access this table.
public String ConnectionName { get; set; }
The schema discoverer does not provides this information it is mostly uses by the DSC process in the migrations library.
The file group or table space where the tabla is stored.
public String FileGroup { get; set; }
A collection of ForeignKeys.
public List<ForeignKey> ForeignKeys { get; set; }
Whether the information modeled is a View instead of a Table.
public Boolean IsView { get; set; }
The name of the object.
public String Name { get; set; }
Table's primary key information.
public Index PrimaryKey { get; set; }
Schema to which the table blongs to.
public String Schema { get; set; }
The name of the sequence used for autonumeric columns (optional).
public String SequenceName { get; set; }
The schema discoverer does not provides this information it is mostly uses by the DSC process in the migrations library.
Sequences are mostly used in Oracle for autonumeric columnas, it is not used in any other database engine.
Returns a textual representation of this table.
public String ToString()
In this document