I have a function that is triggered from a queue and towards the end of the function it sends it to an Azure table. I am running this locally now and it has stopped working locally (was pointing to Azure env) and I don't know why. The error is generated before the function is entered and it is:
VehicleCatalog.Storage.AzureTable: Value cannot be null.
Parameter name: <TableName>.
I have a tableStorage section in local.settings
"tableStorage": {
"connectionString": "",
"<tableName>": ""
},
and I have the table mentioned there created in the emulator. I have also moved that setting to the Values section but still no joy. I am not sure it is that table the process is falling over on.
Are there any other tables required to support this that I don't know about or does any one know of something I don't to make this run using the emulator.