Hello @Apurva Achrekar
It seems like there is an issue with the runtime version of your Azure Function app. The error message System.Linq: Sequence contains one or more elements
usually occurs when there is a mismatch between the runtime version specified in your code and the runtime version of the Azure Function app.
Based on the configurations you have provided, it seems like you have specified the runtime version as v8.0
in your azure_function_netframeworkversion
parameter. However, the correct runtime version for .NET 8 (isolated) is 8.0
. To fix this issue, you can try updating the azure_function_netframeworkversion
parameter to 8.0
in your deploy-function.yml
file and redeploying your Azure Function app.
Additionally, you can also check the runtime version of your Azure Function app on the Azure portal by going to the "Configuration" section of your Function app and checking the value of the "FUNCTIONS_EXTENSION_VERSION" setting.
I hope that this response has addressed your query and helped you overcome your challenges. If so, please mark this response as Answered. This will not only acknowledge our efforts, but also assist other community members who may be looking for similar solutions.