Five years ago I was the recipient of an existing data model. It was designed with best intentions, but we've all learned a thing or two since then, and I've discovered there is a poor relationship between two of my tables.
I deal with students, so students are registered into classes and then there is attendance taken for those registrations. However, due to some issues I won't get into, the relationship between Registration and Attendance is non-existant.
So, I have a stu_id and cls_id column in both tables, but they can not be foreign keyed. Can I create this relationship in LLBLGen even though it does not exist in the database so that I can use my RegistrationEntity to pull my AttendanceCollection? I would want to join the stu_id and cls_id columns together. IF this is possible, does it then generate all the PrefetchPaths as well? (crossing my fingers)