Hello,
I'm studying LLBLGen Pro to learn how to use it. I thought it important to first understand the concepts used, so I am studying the help file.
A "Note" in the file has caught my attention. It reads:
Don't use surrogate keys on the subtype tables, it's important the PK of the subtype tables has the foreign key to the supertype's PK.
Am I to understand this to mean that if I had, for example, the following two tables,
Customer
CustomerAddress
...that the PK of the CustomerAddress table should be related directly to the PK of the Customer table?
If so, how will LLBLGen Pro handle relationships built the way I learned: the PK of the CustomerAddress table is unique, and unrelated to the Customer table. The Customer table PK is represented in the CustomerAddress table, but it is not the PK of the CustomerAddress table.
Thank you.