我已经计算出每个用户的产品数量
qb.loadRelationCountAndMap('user.products_count', 'user.products');
现在我要在此字段上排序
qb.orderBy(`user.products_count`, 'DESC');
我正在尝试做orderBy,但出错了
response: 'Cannot read property \'databaseName\' of undefined',
status: 500,
message: 'Cannot read property \'databaseName\' of undefined' } false
我正在使用它与分页getManyAndCount()。