Accessing Azure Storage Table from Azure Function App (PowerShell)
I want to use the following code in a Azure Function powershell app: Add-AzTableRow ` -table outputTable` -partitionKey $partitionKey ` -rowKey ($record.id) -property @{"userId" = "001";} I'm using this documentation as a guide. However, this guide uses Install-Module AzTable. Since…