今天踩了个大坑!!TypeORM生成的SQL,mssql不支持,因为版本太老,作者不支持啦!!
涉及Find,FindOne方法等,因为用到了新语法FETCH ,报错:QueryFailedError: Error: Invalid usage of the option NEXT in the FETCH statement.
临时解决办法:用原生SQL或者createQueryBuilder来取代find方法。
2021-12-15 12:09:02
今天踩了个大坑!!TypeORM生成的SQL,mssql不支持,因为版本太老,作者不支持啦!!
涉及Find,FindOne方法等,因为用到了新语法FETCH ,报错:QueryFailedError: Error: Invalid usage of the option NEXT in the FETCH statement.
临时解决办法:用原生SQL或者createQueryBuilder来取代find方法。