I like LLBLGen very much, but I ran into the following problem. I am dealing with transactions and stuff and I trying to explain the problem in a simple example:
Let's say you have and AdressToPerson Table which has the following columns:
Address_Seq (PK)
Person_id
some_other_ column
and another table which is actually holding the data called AddressData:
Address_Seq (FK. PK)
Last_mod_date(PK)
ValidFrom
ValidTo
Street
City
Region, ...
there is a 1:m connection between AddressToPerson and AddressData. My problem now, how can I use table inheritance (tablePerEntity-Style) in order to create a table that has the latest address entry and the person_id etc.
If I am correct LLBLGen only supports this if there is an 1:1 relationship between the tables. But I cannot do this because I need the changing information of the addresses. Any help and ideas are appreciated.