I am currently evaluating LLBLGen Pro. I have chosen to go with the Adapter approach since, I will be generating code to use in my Webservice. Here is one thing I cannot get to work. I have a database that does not have any relations defined between tables. I created relations manually in the LLBLGen Pro Gui. Here is a small part of my schema.
Customer CustAddress cAddress
CustKey (PK) CustKey(FK) AddressKey(FK)
CustName AddressKey(FK) AddressLine1
AddressLine2
Etc.
Customer <1:n> CustAddress <1:1> cAddress.
So, Each customer can have many CustAddress and each CustAddress has only 2 cAddress.
Now the problem is that the generated code shows the correct relation between Customer and CustAddress but there is no relation between CustAddress and cAddress.
Is this something that is not currently supported? Thank you so much for the help.