[]
Defines a table.
public sealed class Table : IEquatable<Table>
Name | Description |
---|---|
Table(DbName, TableType, IEnumerable<Column>) | Initializes a new instance of the Table class. |
Name | Description |
---|---|
Columns | The table colums collection. |
Name | The name of table |
TableType | The table type. |
Name | Description |
---|---|
Equals(Table) | Returns a bool. This is true if the specified Table is equal to the current Table; otherwise, false. The table for comparison. |
Equals(object) | Returns a bool. This is true if the specified Object is equal to the current Table; otherwise, false. The object for comparison. |
GetHashCode() | Returns a int that represents a hash code for the current object. |
ToString() | Returns a string that represents this instance. |
Name | Description |
---|---|
operator ==(Table, Table) | Returns a bool. This is true if the first Table is equal to the second Table; otherwise, false. The first table for comparison.The second table for comparison. |
operator !=(Table, Table) | Returns a bool. This is true if the first Table is not equal to the second Table; otherwise, false. The first table for comparison.The second table for comparison. |