Click or drag to resize
BizFormHelperGetFullTableName Method

Gets table name including prefix for biz form table. Both tableNamePrefix and tableName must be sanitized strings suitable for a table name.

If the resulting table name is longer than 60 characters, it is truncated and appended an ordinal number to ensure uniqueness.

Namespace: CMS.OnlineForms
Assembly: CMS.OnlineForms (in CMS.OnlineForms.dll) Version: 12.0.0
Syntax
C#
public static string GetFullTableName(
	TableManager tableManager,
	string tableNamePrefix,
	string tableName
)

Parameters

tableManager
Type: CMS.DataEngineTableManager
Table manager to be used for uniqueness testing when truncating table name.
tableNamePrefix
Type: SystemString
Table name prefix from which to derive full table name.
tableName
Type: SystemString
Table name from which to derive full table name.

Return Value

Type: String
Returns full table name derived from a prefix and table name.
Exceptions
ExceptionCondition
ArgumentNullExceptionThrown when tableManager, tableNamePrefix or tableName is null.
ArgumentExceptionThrown when tableNamePrefix or tableName is an empty string.
See Also