We are now starting an asp.net core project. In our old application we used a lot of sessions to store values throughout application. However, we had some issues in using sessions.
My application is like group -> department -> project. If a user select a group we want to store groupId(this is used in navigation or data entry). The same in department and project. So we want to a user carry groupid, departmentnumber, projectid. They can be updated.
for e.g. We have bottom navigation have current group, current department, current project. So user can easily click navigation link and go to specific group or department by groupid or departmentnumber which is stored in application.
Is there any approach that can do the work like session?
thank you in advance.