Datagrid with objects without association

0
Which x-path to use to retrieve objects without association with another object (for example show all companies that do not have any employees)
asked
1 answers
6

Using not(); your example would result in something like this XPath restriction on your grid of ModuleName.Company objects:

[not(ModuleName.Employee_Company/ModuleName.Employee)]
answered