As a newcomer to .NET development, I am currently working on creating a basic display site.
My goal is to extract the count of incomplete orders from a database at the beginning of each day and keep this number consistent throughout the day:
(finished / original unfinished orders)
The quantity of "unfinished orders" fluctuates as new orders are completed. Caching this data could lead to different numbers being displayed to users based on when they access the script.
I aim for every user to view the same initial daily total and have it reset nightly. How can I achieve this?