Skip to main content

DBSchema(DBTable[], DBTable[]) Constructor

Initializes a new instance of the DBSchema class.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v24.1.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

public DBSchema(
    DBTable[] tables,
    DBTable[] views
)

Parameters

Name Type Description
tables DBTable[]

An array of DBTable objects representing tables that will be included in the DBSchema. This value is assigned to the DBSchema.Tables property.

views DBTable[]

An array of DBTable objects representing views that will be included in the DBSchema. This value is assigned to the DBSchema.Views property.

See Also