Hi,
I have the following use case:
- Retrieve data (say Customer objects) on Hibernate session by executing a query.
- Create some extra customers on same session.
- Delete some customers on same session.
Now I want to iterate over the total, "current" customer collection, i.e. retrieved + created - deleted.
As far as I can see, there is no out of the box support for this use case: I'll have to maintain this administration on top of the Hibernate session.
Am I correct in observing this ?
Thanks,
- Fernand.
|