Hi, (Using LLBLGen Ver2.5, VB, SQL Server 2005, WinForm)
I don't understand an error I have after making changes to my database and regenerating with LLBLGen.
Situation
Table Programme has a one-to-many relationship with table Result.
I've changed the PK of Programme from ProgrammeCode (string) to ProgrammeID (int) and the FK of the Result table to ProgrammeID also.
Problem
The statement
prefetchPath.Add(ResultEntity.PrefetchPathProgramme)
now has the error PrefetchPathProgramme' is not a member of 'MIS.DAL.EntityClasses.ResultEntity' and has to be changed to
prefetchPath.Add(ResultEntity.PrefetchPathProgramme_)
It seems that the Result table Relations Field mapped name has changed to Programme_ for all tables that have a m:1 relationship with the Programme table.
I don't know why this has happened, but can I safely edit it in the designer back to Programme?
Thanks