We upgrade lgp file from v1.0 to v2.6 and then to v3.0
but after we generated codes from v3.0, we found Entity construct functions and relations are changed.
So we have to update all related codes
Entity construct function from
new BenefitEntity(periodid, carrierid, benefitId)
to
new BenefitEntity(carrierid, periodid, benefitId)
Relations from
bucket.Relations.Add(CarrierBannerAdEntity.Relations.SponsorshipAdEntityUsingPeriodIDCarrierID, JoinHint.Left);
to
bucket.Relations.Add(CarrierBannerAdEntity.Relations.SponsorshipAdEntityUsingCarrierIDPeriodiD, JoinHint.Left);
Question:
Is there any way to avoid updating related codes? Any change/setting needed in llblgenv3.0 designer?