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
So i have 6 table which is table O and has sequential relation of a b c d e
and then I want to access table e value from O i use .Relation
but when I do O.Relation("a.b.c.d.e")
it gives me the wrong column name error which is cannot find column a_b_c_d_ti while the column itself should be title
and when i look at the generated query, it works just fine
Any idea how to solve this? it seems the maximum .Relation() table of go PG still stucks at 3?
The text was updated successfully, but these errors were encountered:
uhm, i think you misunderstood the problem, so i have table
order that has relation with voucher that has relation with package that has relation with service that has relation with service type
which makes
o -> v -> p -> s -> st
and I only have the order data which makes me can't do the suggestion you give
So i have 6 table which is table O and has sequential relation of a b c d e
and then I want to access table e value from O i use .Relation
but when I do O.Relation("a.b.c.d.e")
it gives me the wrong column name error which is cannot find column a_b_c_d_ti while the column itself should be title
and when i look at the generated query, it works just fine
Any idea how to solve this? it seems the maximum .Relation() table of go PG still stucks at 3?
The text was updated successfully, but these errors were encountered: