-1
I have little experience in web applications and I have this question. I am developing an application in ASP NET CORE 3.1, that in one of the pages I have 5 Tables (BOOTSTRAP) that are filled by queries to the BD that searches all the records of a given establishment for each Table, from where part the system CRUD.
It turns out that with every round to this page these queries are made again to refresh the page, thus causing slowness and many requests to BD.
I thought about using Session to store these lists, but I’ve seen some criticism about using Session. So I would like help to try to find a solution that does not hurt good practices on the Web.
I solved my need by using Sesssion
– Alex Oliveira