Genesis
Genesis
I made a pull request to fix this problem and you may download the hotfix release from my fork https://github.com/qiaowencong/BetterJoy/releases/tag/v7.1 tested with win10 21h2
感觉分页一旦遇上了表连接问题很多,多对一的查询可以用,一对多不行, 比如demo中,user连接address查分页,按照user的 id 正序排, 此时虽然分页大小设置的10, 却只查到两个user, 因为其余的address 信息聚合到了 user的 list中去了 ``` @Test void testJoin() { MPJLambdaWrapper wrapper = new MPJLambdaWrapper() .selectAll(UserDO.class) .selectCollection(AddressDO.class, UserDTO::getAddressList) .leftJoin(AddressDO.class, AddressDO::getUserId, UserDO::getId) .orderByAsc(UserDO::getId); Page page =...