evdelst wrote:
Don't know how long your application flow is, but if you use lazy fetching (and transatction isolation to read-comnitted) you will get the data as it is on the moment of fetching.
Might be different if you use lazy and the fetch takes place at a later time and someone else committed data. (different user). Your non-lazy fetch might then be stale data!
Well.... In my flow, i'm pretty sure nobody else will update the data between two requests. So, there's no scenario where-in another flow will update the same data.