<TableCodeName>Row_Base class

An abstract class that represents a record in a table or view. Provides properties that represent the record fields.

Do not change this file manually. Modify the <TableCodeName>Row class if you need to add or change some functionality.

Constructors


C#:
public <TableCodeName>Row_Base();

VB.NET:
Public Sub New()

Description

Initializes a new instance of the <TableCodeName>Row_Base class.

Parameters

None

Properties


C#:
public <ColumnMappingType> <ColumnCodeName> {get; set;}

VB.NET:
Public Property <ColumnCodeName> As <ColumnMappingType>

Description

Gets or sets the value of a column. This property is generated for every column in the table.

Methods


C#:
public override string ToString();

VB.NET:
Public Overrides Function ToString() As String

Description

Returns the string representation of this instance.

Parameters

None

Returns

The string representation of this instance.