Feature Request: make AbpUserBase.FullName mapped
See original GitHub issueAs ABP relies on EntityFramework, making a FullName
search on the database becomes really hard. Would be nice to have FullName on the database to perform such searching.
Issue Analytics
- State:
- Created 5 years ago
- Reactions:1
- Comments:5 (3 by maintainers)
Top Results From Across the Web
No results found
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
I don’t see how the issue is related to EntityFramework.
You can easily achieve
FullName
by migrating theFullName
column to an actual column in database table.[NotMapped]
FullName
FirstName
andLastName
intoFullName
columnHave you tried adding property below to User entity ?
public new string FullName { get; set; }
Then you can add a migration as well.