Ben Who

Results 34 comments of Ben Who

I believe it's a TypeORM issue: https://github.com/typeorm/typeorm/issues/5733 Please remove the `node_modules` folder, and run `npm install` with the `Node v10` before running the integration test.

> can I also ask the reason for using > > ``` > Reflect.getMetadata('design:type', this.entity.prototype, key).name.toLowerCase(); > ``` > > instead of > > ``` > Object.prototype.toString.call(key) > ``` It...

Hi @masonCalmAndCode , Thanks for your contribution. Could you add a test to show the use case?

Hi @rares-lupascu Thanks for your feedback and propose your use case, the PR is welcome!

@Mr-Cool is right, use query builder to sort the results as usual then pass it to the paginator.

@HippolyteJacque @remithomas thanks for the reporting. Could you do me a little favor? Please try to use `.addOrderBy()` instead of `orderBy()` and see if it works. Thanks.

Hi @jimuelpalaca and @HippolyteJacque , Thanks for your feedback. I think the `addOrderBy()` must be appended right after the `orderBy()`, so I am planning to add custom order options to...

Hi @cjlynch12 , Sorry for the late reply. I'm still working on it, but I found that the TypeORM seems to have a bug on the `addOrderBy` nested column with...

@firxworx , thanks for your reply. Unfortunately, I'm trying to add a sorting feature to my library https://github.com/benjamin658/typeorm-cursor-pagination, and it relies on the query builder, so it's not possible to...