I'm trying to make a query in nestjs using typeorm to join two table from two different databases. Searching online, I can't find any guide about it and probably I noticed that typeorm can't do that, is there a way to do it with or without typeorm?
I'm trying to make a query in nestjs using typeorm to join two table from two different databases. Searching online, I can't find any guide about it and probably I noticed that typeorm can't do that, is there a way to do it with or without typeorm?
The only way is to run the query into the two databases with two connections, get the data and make the merge/join of the results via typescript.
TypeORM is not made to join two tables between two databases.