There are two tables in postgresql which are being used in powerapps through a gateway.
One is projects the other is companies .
Project table references company table.

I would like to show a vertical list with the project codes and company names and do a Search on both columns which is of the delegated type (means can handle above 500 entries with no issue).
I’m not being able to do it.
Search function on powerapps:
Search('[public].[projects]',TextSearchBox1.Text,"str_projectcode",<company field name here>)
I don't know what I should put on <company field name here> in order to search over a field from a referenced table (company).
So I don’t know how I can filter the projects based on the “name” field of the company.
