CreateAssociation
Establishes a link between two entities using their navigation properties. Requires navigation properties to be enabled in the connection configuration.
Input
| Name | Type | Required | Description |
| FromId | String | True | The unique identifier (Id) of the source entity for which you are establishing an association. |
| FromTable | String | True | The name of the table containing the source entity. For example, if the FromId belongs to a record in the Customers table, set this parameter to 'Customers'. |
| ToNavigationProperty | String | True | The name of the navigation property used to define the relationship. This property can be retrieved using the ListNavigationProperties procedure. |
| ToId | String | True | The unique identifier (Id) of the target entity in the associated table defined by the navigation property. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | A boolean value indicating whether the association creation operation was successful (true) or failed (false). |