Class Table
Table descriptor.
public sealed record Table : TableLikeObject, IEquatable<TableLikeObject>, IEquatable<Table>
- Inheritance
-
Table
- Implements
- Inherited Members
- Extension Methods
Constructors
Table(SqlObjectName, string?, IReadOnlyCollection<Column>, Identity?, PrimaryKey?)
Table descriptor.
public Table(SqlObjectName Name, string? Description, IReadOnlyCollection<Column> Columns, Identity? Identity, PrimaryKey? PrimaryKey)
Parameters
NameSqlObjectNameName of table.
DescriptionstringOptional description, associated with table.
ColumnsIReadOnlyCollection<Column>Ordered (by ordinal) list of table columns.
IdentityIdentityOptional identity column descriptor.
PrimaryKeyPrimaryKeyOptional primary key descriptor.