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

TableInfo.ActualName Property

Indicates the name of the associated data table, as defined in the data source to which it belongs.

Namespace: DevExpress.DataAccess.Sql

Assembly: DevExpress.DataAccess.v18.2.dll

Declaration

public string ActualName { get; }

Property Value

Type Description
String

A String value, identifying the data table associated with the current TableInfo instance.

Remarks

To identify a TableInfo instance, use the TableInfo.Name property.

A custom name can be assigned to a data table via the TableInfo.Alias property, which enables you to identify the table in a query using the temporary name.

To determine whether or not an alias has been assigned to a table, use the TableInfo.HasAlias property.

See Also