How to add a relation in Typeorm without loading all of them
I have the following entities:
Create entities from existing database
I have an project where I want to connect an existing database with the entities, so I can use typeorm and the auto-generated migrations.
can i join with query builder in type orm if there is no foreign key relations between two table?
customers table(id,userid,name,address) follower table(id, userid, active) I want to perform a join between these two tables using TypeORM, even in the absence of any defined relations between them. typescript typeorm