Record.ToList

 

Record.ToList(record as record) as list

Returns a list of values containing the field values from the input record.

Extract the field values from a record.

Record.ToList([A = 1, B = 2, C = 3])

1

2

3

Show: