Add UI to exclude columns from reverse engineering
See original GitHub issue- Create new class to exchange the table list (stop using TableInformation).
- Add columns to this class.
- Add columns to the output from TableList command if EFPT CLI tool.
- Extend TableInformation with a new, non-serialized
List<ColumnInformation>
, where ColumnInformation has: string Name, bool Excluded - Construct the ExcludeColumns property when loading options, and set when saving options.
- Bind ColumnInfomation to UI - no idea how…
@sm15455 FYI
Issue Analytics
- State:
- Created 3 years ago
- Comments:22 (12 by maintainers)
Top Results From Across the Web
Specify columns to ignore during reverse engineering ...
Hi, when scaffolding from database, I often need to map a property to an enum type and not to its database column type....
Read more >Hibernate reverse engineering - any smart way to exclude ...
hbm.xml file) all the column names, I wonder there is any easy way to exclude unnecessary columns from the generated POJO. I got...
Read more >friendly UI tricks for re-mapping column names?
I have an extensive internal generic column name approach that I ... on my end for now to avoid delays and reduce reverse...
Read more >5 Creating and Reverse-Engineering a Model
This chapter describes how to create a model, how to reverse-engineer this model to ... See Adding and Deleting Datastore Columns for more...
Read more >Scaffolding (Reverse Engineering) - EF Core
Reverse engineering is the process of scaffolding entity type classes and a DbContext class based on a database schema.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Done
#597
This PR “almost” complete the task. I have to add some tests.
Furthermore,