Skip to main content
A newer version of this page is available. .

DBSchema(DBTable[], DBTable[]) Constructor

Initializes a new instance of the DBSchema class.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

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