Serializing a list of anvil.tables.Row objects

On the server you can do:

rows = list(dict(r) for r in app_tables.my_table.search())

on the client (at present) you will get a suspension error - so do

rows = list(dict(list(r)) for r in app_tables.my_table.search())