Skip to:
If you start typing QueryBuilder.select("id"), you can't add DISTINCT after that (the proper syntax being select().distinct().column("id")).
QueryBuilder.select("id")
DISTINCT
select().distinct().column("id")
This adds a workaround that works well with completion:
I can work on this one.
👍 for the first.
If you start typing
QueryBuilder.select("id")
, you can't addDISTINCT
after that (the proper syntax beingselect().distinct().column("id")
).This adds a workaround that works well with completion: