I created a 1:1 relationship between “task” and “Users” table.
How do I make a single call to “Load Table Objects” to table “task” and get data from the related “Users” like the following SQL?
"SELECT u.name AS ‘Name’ , t.username FROM task t
LEFT JOIN Users u ON t.username = u.username "