Amith wrote:
Is there any way I can do a Batch Update / Insert with the new version? I mean sending as a list of entity objects to update / insert.
using a UnitOfWork object you mean? That can be done for a long time already (also in 2.0). Just add objects for persistence to the unit of work object, then commit it to do everything in 1 go (deletes as well).
Batching of INSERT or UPDATE SQL statements isn't supported.
So I'm not entirely sure what you mean, could you give an example?