Skip to main content

DataCacheNode.GetStorageTablesList(Boolean) Method

Returns a list of all the tables available in a cached data store.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Data.v23.2.dll

NuGet Package: DevExpress.Data

Declaration

public override string[] GetStorageTablesList(
    bool includeViews
)

Parameters

Name Type Description
includeViews Boolean

true, to include views; otherwise, false.

Returns

Type Description
String[]

An array of the table names in the cached data store.

Remarks

To get a specific table’s structure, call the DataCacheNode.GetStorageTables method.

See Also