e106199 wrote:
Actually SQL Management Studio creates the correct sql instead of ignoring the relationship.
llblgen simply ignores the relationship and expects user to create a custom filter so it could create the correct sql statement.
My initial point was, why cant llblgen do the same?
As the join is redundant and only causes the DB to do more work for no additional gain. If you want 'Student' to be joined again in the last relationship you have to specify an alias, as your current code simply specifies the same entity.
The problem gets more visible when you add a filter for Student: which entity should be filtered?
here is what sql management studio gives me after adding mentioned tables in the View designer:
SELECT Core.Student.StudentID
FROM Core.Student INNER JOIN
Core.StudentHistory ON Core.Student.StudentID = Core.StudentHistory.StudentID INNER JOIN
Core.AcademicTerm ON Core.StudentHistory.AcademicTermID = Core.AcademicTerm.AcademicTermID INNER JOIN
Core.AcademicYear ON Core.AcademicTerm.AcademicYearID = Core.AcademicYear.AcademicYearID INNER JOIN
Core.StudentStatus ON Core.Student.StudentID = Core.StudentStatus.StudentID AND Core.AcademicYear.AcademicYearID = Core.StudentStatus.AcademicYearID
Ah, but that's not the same. You specified:
AcademicYearEntity.Relations.StudentStatusEntityUsingAcademicYearId,
which means studentstatus is joined to AcademicYear. So the ON clause for that join will only contain the predicate between academicyear and studentstatus. If you want to add an additional predicate to that particular join, specify a CustomFilter.
Agreed, the code could theoretically try to find the entity you already joined and add the ON clause to the previous one, but that's not always what the user wants: sometimes the developer adds, accidentally, redundant relationships, and it's then a question what to do, we chose to ignore them.