We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ui端有个查询 query: XQuery = { filter: [ { field: "descript", value: "qq" } ], sort: [{ field: 'create_time', value: 'desc' } };
query: XQuery = { filter: [ { field: "descript", value: "qq" } ], sort: [{ field: 'create_time', value: 'desc' } };
在api端查询报错,经查,在文件src/core/services/repository.service.ts
src/core/services/repository.service.ts
代码处rep.andWhere(entity.${x.field} like %:param${index}%);
rep.andWhere(
);
修改为 rep.andWhere(entity.${x.field} like concat('%',:param${index},'%'));
即查询正常
The text was updated successfully, but these errors were encountered:
31a0452
No branches or pull requests
ui端有个查询
query: XQuery = { filter: [ { field: "descript", value: "qq" } ], sort: [{ field: 'create_time', value: 'desc' } };
在api端查询报错,经查,在文件
src/core/services/repository.service.ts
代码处
rep.andWhere(
entity.${x.field} like %:param${index}%);
修改为
rep.andWhere(
entity.${x.field} like concat('%',:param${index},'%'));
即查询正常
The text was updated successfully, but these errors were encountered: