0
dhaoo created
4 Answer(s)
-
0
Hi,
Have you tried Entity Extension System for that?
https://abp.io/docs/latest/framework/architecture/modularity/extending/module-entity-extensions#create-update-forms
-
0
Wow, it's amazing. Thank you very much!
-
0
Hi,I checked the AbpUsers table and found that no new field was added. Where is the storage of this field placed
-
0
If want to keep it as a new column, make sure you configured database mapping properly like this example:
https://abp.io/docs/latest/framework/architecture/modularity/extending/module-entity-extensions#database-mapping
And hen create a new entityframework core migration to update database.
dotnet ef migrations add NewPropertyAdded
in .EntityFrameworkCore project