Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

InMemoryDataStore.GetStorageTables(String[]) Method

Returns information that describes the structures of the specified tables.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Xpo.v21.1.dll

NuGet Package: DevExpress.Xpo

Declaration

public DBTable[] GetStorageTables(
    params string[] tables
)

Parameters

Name Type Description
tables String[]

An array of table names whose information should be retrieved.

Returns

Type Description
DBTable[]

An array of DBTable objects that describe the structures of the requested tables.

Remarks

This method returns information on specific tables. For each table name specified by the tables parameter a DBTable object is returned. It describes which columns, primary and foreign keys exist in the specified table in the data store, etc.

To get a list of the available table names in the data store use the InMemoryDataStore.GetStorageTablesList method.

See Also