Skip to main content
All docs
V18.2

IDBSchemaProvider.LoadColumns(SqlDataConnection, DBTable[]) Method

Loads columns from the specified tables.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

void LoadColumns(
    SqlDataConnection connection,
    params DBTable[] tables
)

Parameters

Name Type Description
connection SqlDataConnection

An SqlDataConnection object that specifies a connection to a data store.

tables DBTable[]

An array of DBTable objects specifying tables.

Remarks

Because the IDBSchemaProvider interface was replaced with the IDBSchemaProviderEx interface, this method should no longer be used. Use the IDBSchemaProviderEx.LoadColumns method instead (or the DBSchemaProviderEx.LoadColumns method of the DBSchemaProviderEx class).

See Also