DataCacheRoot.GetStorageTables(String[]) Method
Returns information that describes the structure of specified tables in a cached data store.
Namespace: DevExpress.Xpo.DB
Assembly: DevExpress.Data.v24.1.dll
NuGet Package: DevExpress.Data
Declaration
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 structure of the requested tables. |
Remarks
This method returns a DBTable object for each table name specified by the tables parameter. A DBTable object describes which columns, primary and foreign keys exist in the specified table in the cached data store, etc.
To get a list of the available table names in the cached data store, use the DataCacheRoot.GetStorageTablesList method.
See Also