Artur Nerkowski
Artur Nerkowski
No need :smiley:, thanks for connecting the dots and good luck on the feature :crossed_fingers:
A note for GitLab SM: self managed instances of GitLab can be (and often are) hidden behind firewals, so if access is required from CodeStream servers - information on required...
@liuliangsir - I wouldn't say it's a duplicate. I'd rather say those issues are related.
You can help/monitor progress on `gitlab-prs` branch: https://github.com/TeamCodeStream/codestream/compare/feature/gitlab-prs
This happens because `createQueryBuilder` uses the class name when searching for the appropriate SQL table name while it should use an entity metadata entry instead.
@msau9 - I just avoid passing the class to `createQueryBuilder` directly. If I had an entity class `User`, instead of doing: ```typescript const builder = entityManager.createQueryBuilder(User, 'u'); ``` I'd do:...
Btw. - I experienced this issue (`Entity not found` thing) on `sqlserver` driver (I think it spans multiple drivers though - especially the ones that have case-sensitive table names).
@msau9 - are there any records in that table?