It's possible to use the code generated by LLBLGen Pro against database that share the same structure, but with a different columns order?
Example:
My master DB have:
TableA.ID Integer, ColIndex 0
TableA.FirstName String(100), ColIndex 1
TableA.LastName String(100), ColIndex 2
TableA.PhoneNumber String(20), ColIndex 3
My customer 1 DB have
TableA.FirstName String(100), ColIndex 0
TableA.ID Integer, ColIndex 1
TableA.PhoneNumber String(20), ColIndex 2
TableA.LastName String(100), ColIndex 3
My customer 2 DB have
TableA.LastName String(100), ColIndex 0
TableA.FirstName String(100), ColIndex 1
TableA.PhoneNumber String(20), ColIndex 2
TableA.ID Integer, ColIndex 3
I generate LLBLGen entity using my Master DB.
Will my generated code work against my customer's DB?
P.S. : I have just discovered that my DB structure update procedure don't preserve column order...
Thanks, Max