- I've a entity companies
- I've an entity machines
one company could have many machines
on a company-details a list down i.e. shows all machines owned by this company
How to have a list down on the entity machines details that shows all the machines of the company, who owned by the same company of the showed machine?
In SQL it would be: select machines.name from machines left join companies on machines.ID = company.ID where machines.ID = xyz
Christoph Theuring
- I've an entity machines
one company could have many machines
on a company-details a list down i.e. shows all machines owned by this company
How to have a list down on the entity machines details that shows all the machines of the company, who owned by the same company of the showed machine?
In SQL it would be: select machines.name from machines left join companies on machines.ID = company.ID where machines.ID = xyz
Christoph Theuring
Comment