what is the best way to delete multiple records using hibernate.My requirement is i am getting a list of UUIDs and based on this need to remove all records from the database.
Since hibernate do not have any build in delete method which can take collection as input and do the work on behalf of us.
So i am looking for the best possible way to achieve this. I am not going for bulk delete option since number of records will not gooing to be so high and nor we are using Spring's Template which has support for this type of operation.
Thanks in advance Umesh