<example> <para> If you wanted to compare the CreateUser on the Client table and the Client table only holds the primary key field of the User you would do something like this: </para> <para> AppendComparisonStringWithPk("Client.UserPk", "User", "UserId", "Pk", "=", "Admin") </para> </example>
| Name | Type | Optional | ByRef | Description |
|---|---|---|---|---|
| pkFieldName | String | The name of the Pk field in the current table including the table name, e.g. Client.CreatedUserPk. | ||
| remoteTableName | String | The table in which the Range field exists, e.g. User. | ||
| remoteFieldName | String | The field name to compare to in the remote table i.e. the Id field, NOT the Pk field, e.g. UserId. | ||
| remotePkFieldName | String | The name of the Pk field in the remote table, e.g. Pk. | ||
| operator | String | |||
| value | String | The Range. |