bandirsen
  • Joined on 2020-07-21
bandirsen commented on issue xorm/builder#83 2022-03-23 03:32:16 +00:00
Alias for JOIN with subquery

I think my solution is more a "hack" than a solution :) I propose to add optional Alias parameter into .Select() method just like existing .From() method, or maybe adding new .As() method which…

bandirsen closed issue xorm/builder#83 2022-03-22 17:37:12 +00:00
Alias for JOIN with subquery
bandirsen commented on issue xorm/builder#83 2022-03-22 17:37:07 +00:00
Alias for JOIN with subquery

I close this, using builder.Expr solve the problem, In case someone has same problem this is the solution (sb is xorm query builder):

sb.SELECT("user.id, user.name, external.street"). FROM("u…

bandirsen opened issue xorm/builder#83 2022-03-22 11:35:08 +00:00
Alias for JOIN with subquery