Activities of "ElifKaya"

Hi,

Here you can see that this the same endpoint Click Here

Thank you so much, I will try again :)

Hi, Just for your information there is HardDeleteAsync method using which you can permanently delete the entity record from database. can you please check this link https://docs.abp.io/en/abp/latest/Repositories

Here EntityDeletedEto is trigger when a delete operation is called, even if it is a soft delete it is an delete operation, if you want your moduser to have soft delete please read more on https://docs.abp.io/en/abp/latest/Data-Filtering#isoftdelete

Here is the a snip showing delete triggers Thanks,

Hi,

Thank you for your example. Can you show me your delete api request, please? Because, we use "api/identity/users/{id}" this endpoint from ABP Identity Management. And, it doesn't trigger to EntityDeletedEto.

I mean that, I don't want to hard delete or create another delete api. We just use a ABP Identity Management User Delete Action request. And I will continue to delete action from ABP Identity Management. So, Can you check your (api/identity/users/{id}) endpoint, please? Your user delete endpoint makes a soft delete.

Or, Can you give an example by using your (api/identity/users/{id}) as you did above ?

Thanks,

Hi,

can you please handle EntityDeletedEto<T> is published when an entity of type T was deleted just like you have handled EntityUpdatedEto<T>

Please see the documentation here https://docs.abp.io/en/abp/latest/Distributed-Event-Bus#event-types

Hi,

ABP User Delete endpoint (api/identity/users/{id}) makes just a SOFT DELETE (not a Hard Delete). Actually, it is a update operation (not a delete operation). IsDeleted property is marked as a TRUE by ABP when we request to delete user endpoint.

So it is not a delete operation and it is a update operation. We should not use a EntityDeletedEto<T>. We need to IsDeleted property in Volo.Abp.Users.UserEto.

Also I tried using it as you said anyway. But as I said, this api/identity/users/{id} api does a soft delete operation, not a hard delete. Therefore, EntityUpdatedEto<T> should be used, not EntityUpdatedEto<T>. Therefore, I think that the isDeleted field should be added to Volo.Abp.Users.UserEto.

Hi, can you share exact screenshot or steps to reproduce this issue?

We have custom user entity(ModUsers). And we always listen to ABPUser table by using IDistributedEventHandler<EntityUpdatedEto<UserEto>>. And we aim to sync with our custom user data and ABPUser data in every cases.

We can catch all changes in user creation and modification from ABPUser table. But, ABP make soft delete and marked as a IsDeleted column is true when user delete operation. But, Volo.Abp.Users.UserEto does not contains IsDeleted property so we can not catch a deleted user. It is not falling to IDistributedEventHandler<EntityUpdatedEto<UserEto>>. Because there is no IsDeleted property in your UserEto class.

I shared the all necessary images above.

Can you add IsDeleted property to your UserEto ?

it works, thanks

Hi,

Do you want to switch to host when navigating the document page, right?

Yes, I want to use host db when navigate to documents page even I login with tenant user

Hi,

Could you provide steps to reproduce the issue? thanks.

I have get cache data in manager.cs and I can read data from appservice by using this manager method. No problem so far. I used same manager method in HangfireBackgroundWorkerBase, but get cache method result is always null.

Hi,

Could you provide steps to reproduce the issue? thanks.

I have get cache data in manager.cs and I can read data from appservice by using this manager method.I used same manager method in HangfireBackgroundWorkerBase, but

Hi,

Could you provide steps to reproduce the issue? thanks.

I have get cache data in manager.cs and I can read data from appservice by using this manager method.I used same manager method in HangfireBackgroundWorkerBase, but

I want to use redis cache with IDistributedCache.

There will be no problem using Redis with IDistributedCache.

And I want to manage cache data to add, remove notification operation.

Redis as a backplane and use IDistributedCache to manage messages, I think there may be problems. This is not recommended.

But, when I add to data to IDistributedCache, I can not see this data on Redis. So, How I can user redis with IDistributedCache. I configured redis according to abp document. Actually, this was my first question at the top of the page.

Showing 11 to 20 of 53 entries
Made with ❤️ on ABP v8.2.0-preview Updated on March 25, 2024, 15:11