You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
First, u should implement your raw sql code like below
Second, u implement the multi-table join query with QueryBuilder
First step
SELECT
n.id ,
n.title ,
ti.tagName
from
TableN n
join TTableN twn on
twn.note_id = n.id
join TTableI ti on
ti.id = twn.tagInfo_id
where ti.tagName ="customize1" limit 1 offset 2;
now, i have a User object and a Role object , it look like this:
i wanna know, how can i serialize it to
instead of
The text was updated successfully, but these errors were encountered: