Hi folks!
I have migrated from LLBLGen v2.0 to v3.0. Everything runs fine, except that fields position have changed in some table.
It seems that fields are now sorted alphabetically, at least for primary keys. It's an issue for me, as every entity instantiation in my code have to be reviewed, to change argument order in constructor.
For exemple, this instantiation is no longer correct :
PARAMETRE_TOP1Entity top1 = new PARAMETRE_TOP1Entity(dateDebut, dateFin, codeRegroupement, sProfilGRD, typeEngagement, typePrix);
With LLBLGen v3, it has to be :
PARAMETRE_TOP1Entity top1 = new PARAMETRE_TOP1Entity(dateDebut, dateFin, sProfilGRD, codeRegroupement, typeEngagement, typePrix);
Do you have a solution to maintain old position order?
Thank you!
Kal