Skip to main content

DBTable.GetColumn(String) Method

Creates a new column with the specified name and appends it to the DBTable.Columns collection.

Namespace: DevExpress.Xpo.DB

Assembly: DevExpress.Data.v24.2.dll

NuGet Package: DevExpress.Data

#Declaration

public DBColumn GetColumn(
    string columnName
)

#Parameters

Name Type Description
columnName String

A String value that specifies the column’s name. This value is assigned to the DBColumn.Name property.

#Returns

Type Description
DBColumn

A DBColumn object that represents the new column.

See Also