How to manage state in Dotnet core web API
Introduction to problem statement
For some cases it is required to maintain state in Web-API. But as per design principles, it is not a good practice to make a restful API stateful. In modern backend development, APIs are created as stateless because...