function (table
as table,typeTransformations
as list, optionalculture
as nullable any) as table
table
by applying the transform operation to the columns specified in the parameter typeTransformations
(where format is { column name, type name}), using the specified culture in the parameter culture
. If the column doesn't exist, an exception is thrown.({[a = 1, b = 2], [a = 3, b = 4]})
.Table.FromRecords({[a = "1", b = 2], [a = "3", b = 4]})