I have a .net application with a Form layer, a DB model layer (entity framework) and a Controller layer between this two layers.
I need to handle this situation:
User presses a button to edit some params
The form needs to request some DB data that represents the current state of those params
- Possibly, the user request could be rejected because is N/A to current situation, in this case an error message box should be shown
A modal form is shown, the user changes params and confirm
Changes are made in the DB model
That's pretty simple.
The fact is that, at point 4, we need some of the data we already processed at point 2.
In particular:
- at point 2 we request some data to the DB model, that data is likely not to be in cache, so a SQL query is performed
- that data is processed by a local LINQ
state of several checkboxes to show in the modal form is returned
at point 4 we need again LINQ processed data
- since we came from the Form layer, we do not have that data anymore
- therefore data is requested again to the DB model, but this time it's in cache
- that data is processed again by local LINQ
Is it worth to re-load and re-process data to maintain the MVC pattern?