product version : Abp.AspNetCore 6.6.1 product type: Angular framework type: .net core
our applicaiton That is build on ABP framework makes useless requests to database and this implies unneded costs for our database that is HOsted in Cloud.
for last month we ahve over 100 millions requests made to tables [AbpUserOrganizationUnits] [AbpOrganizationUnitRoles] that we do not use and have no data there.
i need a to find a way to disable this requests as it Brings aditional cost to MSSQL server hosting and has no value for our product
please advice how this can be acheived
Thanks in advance Regards
2 Answer(s)
-
0
Hi,
I tihnk your query is related to this line https://github.com/aspnetboilerplate/aspnetboilerplate/blob/dev/src/Abp.ZeroCore/Authorization/Users/AbpUserStore.cs#L790.
In your project, you can go to UserStore.cs, override this method and exclude related line.
-
0
thanks for the hint. solution implemented