I am working on an API using Nest js that has to connect to an existing database.
There are so many tables that cannot be manage manually for creating the entity tables in Nest.
I am using sequelize.
Is there a way that I can auto generate models. Sequelize-auto seems to only work well for express. I need something that can generate class based model entities.
I get the solution, you can use sequelize-typescript-generator library to create the entity and models automatically based on schema and connection.
From the description: