 | 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.
Namespace: Ignition.ConfigurationAssembly: CatalystFire.Ignition (in CatalystFire.Ignition.dll) Version: 12.0.28229
Syntaxpublic IgnitionConfiguration RegisterGlobalListTableAlias(
string businessObject,
string tableName,
string alias
)
Public Function RegisterGlobalListTableAlias (
businessObject As String,
tableName As String,
alias As String
) As IgnitionConfiguration
public:
IgnitionConfiguration^ RegisterGlobalListTableAlias(
String^ businessObject,
String^ tableName,
String^ alias
)
member RegisterGlobalListTableAlias :
businessObject : string *
tableName : string *
alias : string -> IgnitionConfiguration 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