Click or drag to resize
FieldBaseFieldTypeLoadFromTableData Method
Loads the field info from plain database structure data.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 10.0.0
Syntax
C#
public virtual void LoadFromTableData(
	DataRow row,
	bool isPrimary,
	bool isSystem
)

Parameters

row
Type: System.DataDataRow
Data row with structure information
isPrimary
Type: SystemBoolean
Indicates if field represents primary key
isSystem
Type: SystemBoolean
Indicates if field is system field

Implements

IDataDefinitionItemLoadFromTableData(DataRow, Boolean, Boolean)
Remarks
Database structure data can be obtained via GetColumnInformation(String, String).
See Also