Skip to main content

Table.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.v23.2.dll

NuGet Packages: DevExpress.DataAccess, DevExpress.Win.PivotGrid, DevExpress.Win.TreeMap

Declaration

public string ActualName { get; }

Property Value

Type Description
String

A String value, identifying the data table.

Remarks

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

A custom name can be assigned to a data table via the Table.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 Table.HasAlias property.

See Also