**_Roo_Entity.aj has method called **.persist() which persist one object at a time to DB.
I want to add batch insert capability in the **_Roo_Entity.aj.
A method which takes list of object and does bulk insert. like creatAll(List<**> objects).

is it possible to do by adding new method in **._Roo_Entity.aj?
I was reading that it is not good option to edit **Roo_Entity.aj file. if then what is alternate class to add the method.