Range Method (IRecordCollection<TRecord>)
- Last UpdatedApr 08, 2026
- 1 minute read
For each TRecord between startingSlot (inclusive) and endingSlot (exclusive), performs action on that TRecord, ordered by ascending IRecord.RecordNumber.
void Range(
int startingSlot,
int endingSlot,
Action<TRecord> action,
LockType tableLockType,
LockType recordLockType
)
void Range(
int startingSlot,
int endingSlot,
Action<TRecord^>^ action,
LockType tableLockType,
LockType recordLockType
)
Parameters
- startingSlot
- The initial slot (inclusive).
- endingSlot
- The ending slot (exclusive).
- action
- The Action to perform on each record.
- tableLockType
- The TRecord table lock type for the scope of the action.
- recordLockType
- The TRecord table record lock type for the scope of the action.