如何在typeorm中的自定义字段上排序?

时间:2019-09-27 09:50:37

标签: node.js typeorm

我已经计算出每个用户的产品数量

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()。

0 个答案:

没有答案