I am aware of "FieldCompareSetPredicate" and have found it useful. However please explain the best practice of accomplishing the following:
Tables:
Company
CompanyEmployeeRel (CompanyId, EmployeeId)
Employee (has a CountryId column)
Country
How would I select only companies that meet these conditions:
- All companies with more than 5 employees
- All Employees are from a specific country
Using prefetch paths, so we can walk through the heirarchy after the select.
Thank you