Hi,
I want to hard delete record from AbpUsersTable, Currently we are doing soft delete from AbpUsers Table. I went through some documents for hard delete, i found HardDeleteAsync method for hard delete. i found this method for my other DB repository, but not for Identity Module repository. I want hard delete user from AbpUsers Table. i could not found HardDeleteAsync this method for IdentityUserManager or any repository of identity model.
So how should i hard delete records from AbpUsers Table?
ABP Framework version: v3.0.4 UI type: Angular DB provider: EF Core Tiered (MVC) or Identity Server Separated (Angular): yes / no Exception message and stack trace: Steps to reproduce the issue:
2 Answer(s)
-
0
hi
using Volo.Abp.Domain.Repositories; private readonly IIdentityUserRepository _identityUserRepository; await _identityUserRepository.HardDeleteAsync(IdentityUserEntity);
-
0
This question has been automatically marked as stale because it has not had recent activity.