0
krushnakant created
- ABP Framework version: v4.4.3
- UI type: MVC
- DB provider: EF Core
- Tiered (MVC) or Identity Server Separated (Angular): no
- Exception message and stack trace:
- In Volo.Abp.Identity.Pro module if we delete any record in Identity -> Users and create a new record with same username or email it gives error that username or email already exits.
- Steps to reproduce the issue:"
4 Answer(s)
-
0
Can you check if the deleted user still exists in database?
-
0
Yes, record is available in database. But Identity User provides soft delete functionality due to which even if the data is deleted, the data remains in the database but the field isDeleted has its value true. Which means if a user of same username/email must be allowed to get inserted after it is deleted and it's entry remains in the Db as a deleted entry.
-
0
I created a project (v4.4.3) and created-deleted-recreated a user with same username & email. I didn't get any exception.
Have you made any changes related with soft deletion in your project?
-
0
No, I don't made any changes related with soft deletion.