There is no direct way to implement this, but you can use the RelationPredicateBucket parameter to pass a FieldCompareSetPredicate to filter on the same table using TOP, something that should produce the following:
DELETE FROM Customer
WHERE Id IN (SELECT TOP 100 Id FROM Customer WHERE .....)