0
Web2workNL created
product version : Abp.AspNetCore 6.6.1 product type: Angular framework type: .net core
I woudl like to add caching for AbpUsers table. please advice a proper method to do this
1 Answer(s)
-
0
Hi @web2worknl
It might be a time consuming process but you can follow steps below;
- Replace usages of IRepository<User, long> with UserStore class.
- Then, in your UserStore class, override related methods which uses IRepository<User, long> here https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.ZeroCore/Authorization/Users/AbpUserStore.cs and add caching.