[]
Represents a database schema containing tables and foreign key relationships to be displayed in the user interface of the QueryDesignerDialog.
public sealed class DataSchema
The DataSchema class encapsulates the structure of a database schema, including the tables and foreign key relationships between those tables.
Name | Description |
---|---|
DataSchema(IEnumerable<Table>, IEnumerable<ForeignKey>) | Initializes a new instance of the DataSchema class. |
Name | Description |
---|---|
Empty | Gets an empty DataSchema instance with no tables and no foreign key relationships. |
Name | Description |
---|---|
ForeignKeys | Gets the collection of foreign keys relationships defined in the schema. |
Tables | Gets the collection of tables defined in the schema. |