-
ABP Framework version: v9.0.3
-
UI Type: Blazor WASM
-
Database System: EF Core (PostgreSQL)
-
Tiered (for MVC) or Auth Server Separated (for Angular): yes
While ABP Suite has a screen that allows us to generate a Domain, UI, backend, etc for specified table in the DB, it only appears to be able to do so one table at a time. Is there an option or better yet a ABP CLI command that will allow us to do this for specified tables (more than 1 at a time)? We have a legacy system with several hundred tables that are converting over to the ABP framework and want to generate all of our domain objects, with associated DTO's and CRUD pages for all the tables in the DB.
How can this be accomplished?
1 Answer(s)
-
0
Hello
In ABP, generating multiple tables at once is not natively supported out of the box with ABP Suite or the CLI. Both tools are designed to handle one table at a time for generating domain objects, DTOs, and CRUD pages.
If you have to Generating CRUD Pages From an Existing Database Table you can check this document
Thank you.