I have a a BO with related records and at some point I would like to delete all records in the BO pretty much like a VFP DELETE ALL or ZAP, how to do this?
I have tried using the BO's GetEnumerable() I saw in thread like this:
For
bo.DeleteCurrentRow(
But the above code is not deleting all rows in the BO, so I must be missing something here.