We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
find_with_*
Currently, find_with_* method will produce a query like below, where ORDER BY is required to make sure it's in proper order to be consolidated.
ORDER BY
SELECT `container`.`db_id` AS `A_db_id`, `content`.`id` AS `B_id`, `content`.`container_id` AS `B_container_id` FROM `container` LEFT JOIN `content` ON `container`.`db_id` = `content`.`container_id` ORDER BY `container`.`db_id` ASC
The consolidation logic is defined at
sea-orm/src/executor/select.rs
Lines 993 to 1027 in 986f0c2
The text was updated successfully, but these errors were encountered:
Closed by #1743
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Motivation
Currently,
find_with_*
method will produce a query like below, whereORDER BY
is required to make sure it's in proper order to be consolidated.The consolidation logic is defined at
sea-orm/src/executor/select.rs
Lines 993 to 1027 in 986f0c2
The text was updated successfully, but these errors were encountered: