Click or drag to resize
ITableManagerCreateTable Method (String, String, Boolean)
Creates specified table in database with specified primary key column with or without identity.

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 9.0.0
Syntax
C#
void CreateTable(
	string tableName,
	string primaryKeyName,
	bool setIdentity
)

Parameters

tableName
Type: SystemString
Table name to create
primaryKeyName
Type: SystemString
Primary key of table to create
setIdentity
Type: SystemBoolean
If true, sets identity on primary key column
See Also