Is there a way to limit the number of records for DeleteEntitiesDirectly? I need to break the delete operation into chunks and repeat until no records remain. In SQL Server this would be
delete top(1000) tablename ...
and then repeat while @@rowcount>0
I don't see a way to do this with DataAccessAdapter.DeleteEntitiesDirectly. Do I need to fetch PK fields in batches and then delete using the PKs?