Hi All,
I'm banging my head on how can I correctly filter the employees based on the required inductions from a Project. Below is my data structure.
Employee List
ID EmpName
1 Emp1
2 Emp2
ProjectInduction List
ProjectID InductionID Title
1 1 Cert1
1 2 Cert2
EmployeeInductions
EmpID InductionID
1 1
1 2
2 1
On the above data structure, I want to filter or get only the employees having the same induction from a Project so the desired result must be showing EMPID 1 since he have all the inductions from the specific project
Result collection
EmpID
1
Please let me know if the above is clear. Thank you in advance