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
原因是 贪婪加载的实现,和贪懒加载可以多层引用的设计,比如 查询 20000个 father 贪婪加载 他们的 father.sonList 或 father.son 贪婪加载就会报 in的参数过多。 比如查询 1000个father 贪婪加载他们的 father.sonList sonList 各有 10个 也就是 10000个son 如果再贪婪加载son.sonList 也会报in参数过多。 。。。子子孙孙无穷尽也。
The text was updated successfully, but these errors were encountered:
树形实体的某些子查询 也有可能出现此问题,修改的时候应该考虑 。 可以参考或使用 QueryInBatches
Sorry, something went wrong.
No branches or pull requests
原因是 贪婪加载的实现,和贪懒加载可以多层引用的设计,比如 查询 20000个 father 贪婪加载 他们的 father.sonList 或 father.son 贪婪加载就会报 in的参数过多。 比如查询 1000个father 贪婪加载他们的
father.sonList sonList 各有 10个 也就是 10000个son 如果再贪婪加载son.sonList 也会报in参数过多。
。。。子子孙孙无穷尽也。
The text was updated successfully, but these errors were encountered: