IgnitionConfigurationRegisterGlobalListTableAlias Method

When entities based on businessObject reference denormalized fields from tableName, Ignition will use the list table entry that has been labeled with the alias, alias to retrieve the requested data.

Definition

Namespace: Ignition.Configuration
Assembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.3454
C#
public IgnitionConfiguration RegisterGlobalListTableAlias(
	string businessObject,
	string tableName,
	string alias
)

Parameters

businessObject  String
The business object whose List Table definition includes an aliased table
tableName  String
The name of the table which was aliased in businessObject's List Table
alias  String
The alias defined on the table, tableName in businessObject's List Table

Return Value

IgnitionConfiguration

Remarks

Whenever any entity includes a NetForumField denormalized from another table, Ignition uses the NetFORUM List Table for that entity's NetForumBusinessObject to look up the data for that field in queries. If the denormalized table is referenced more than once in the List Table, Ignition needs to know which List Table entry to use.

See Also