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
Possible I did not find the answer and it already exist somewhere here, but is it possible to alias entity names in (with ..)?
Example something like:
(with orders
(with address) ;delivery
(with contact ;person responsible
(with address))) ;;and the address for invoices of this persons order
would produce java.sql.SQLSyntaxErrorException: Not unique table/alias: address
possible way to solve:
(with orders
(with address :as :delivery_address) ;delivery
(with contact ;person responsible
(with address :as :invoice_address))) ;;and the address for invoices of this persons order
But this does not work, again mariadb with mysql adapter and [korma "0.4.3"]
The text was updated successfully, but these errors were encountered:
Possible I did not find the answer and it already exist somewhere here, but is it possible to alias entity names in (with ..)?
Example something like:
would produce
java.sql.SQLSyntaxErrorException: Not unique table/alias: address
possible way to solve:
But this does not work, again mariadb with mysql adapter and [korma "0.4.3"]
The text was updated successfully, but these errors were encountered: