I have the following problem with an NHibernate query.
one table
LearnerDocuments :
LearnerNumber
CandidateNumber
....
other table
LearnerRegistration :
LearnerId
LearnerNumber
....
the last one
Learner :
LearnerId
LearnerName
....
The relation between LearnerDocuments and and LearnerRegistration doesn’t exist.
How can I write a query that gets all LearnerRegistration which have LearnerDocuments?
1 Answer