sorry, i thought that the project i indicated highlights the issue perfectly. i'm not sure what more you'd need. at the risk of repeating myself,
with a couple of rows of data in the d/base, load up the data in the listings page. this shows a table of the data.
double click on a row to produce a screen which has a form. the form is populated with the data from the row.
go back to the listings page.
now hit the "new" button. this produces the same view which was used to render the row you clicked on in step 2.
see that the form in the view is populated with the old data from the previous rendering, when in fact it should be empty because you want to use the form to create a new entity.
what seems to be happening is that the first time the view (form) is rendered, (are they not precompiled?) it is put into the cache. the problem is that any data which are in the form elements (textboxes etc) seems to be put into the cache as well. so, when you then use the view to try to create a new entity, and want all the fields to be empty, it is in fact pre-populated with the old data.
not sure how i can clearer be about this? or how a unit test would help? as i said, the project i put on the website shows this behaviour clearly. i'd be willing to spend more time on it, but i can't afford to wait the long delays between posting here and getting a response. again, i understand you're busy like the rest of us. it might help if you could answer the questions i'd had about how is it that the execute method populates the cache? or does it? the source code is not that clear to follow as there is very little inline documentation with it so i spent quite a bit of time stepping through with the debugger etc etc....and i'm still not clear about some things.
anyway, i apologise if i come across as complaining, don't mean to. the framework has great potential i'm sure.