Category "azure-functions"

Graph Active Directory Users API returning lots of duplicates

I'm using the Graph API in an azure function to get all users from active directory. The code I am using shown below but pseudocode is if there is no previous d

Running multiple Azure Functions locally

I have a solution in Visual Studio 2022 with multiple Azure Functions projects in it. The projects are in .NET 4.8 using the v1 of the function run-time. When d

Azure Functions: StatusCode cannot be set because the response has already started

I am trying to stream data from my Azure Function and all is fine but I get an error after it has executed. This is the code: [FunctionName("QueryData")] public

How can I access delivery property within EventGridEvent triggered function app?

I have configured a blob storage event subscription to be raised when a file is uploaded into an Azure storage account and have created an EventGridTrigger type

Azure Function App throwing 403 Error when sending zip file

I am using postman to make call to my Azure Function App. I am making a call which sends over a zip file and get a 403 error but when I send a JSON file it gets

ServiceBusTrigger Unit testing with XUNIT

I have an Azure Function as below. In the following code, I'm adding a product to the database using Repository & EF Core. Is there any way we can test it u

Do Azure Functions execute multiple instances of a function?

I am experiencing some very strange Azure function behavior. I have a function that queries Azure Active Directory, gets each page of 200 users, passes it to a

Azure Function v1 using VS 2022 Conflict with Azurite vs AzureStorageEmulator

Can VS 2022 run Azure Function v1 functions? We're attempting to move from VS2019 to VS2022 and the Function project fails to run correctly. It seems that when

Why does Event Grid serialize my already serialized data?

I am trying to get into dotnet and Azure and so I build small solution that triggers a azure function by http with a count that then requests the given amount o

Self-Hosted Integration Runtime Copy Activity Timeout

I’m trying to implement a pipeline in ADF where I copy data from a Function App to an on-prem SQL Server. I have installed the Self-Hosted Integration Run

Error handling with Azure Function ServiceBusTrigger

I have an Azure Function as below. I came to know that ServiceBusTrigger provides a retry mechanism and by default retry five times and after that write a messa

Azure functions swap functionality is not working after enabling private endpoint for function app linked storage

Azure functions swap functionality is not working after enabling private endpoint(with selected networks option) for function app linked storage account(webjobs

EntityFramework 5 Logging in Azure Functions

TLDR; How can we make EF5 logging into its own category instead of the category of the Azure Function? After we upgraded our Azure Functions from .NET core to .

Creating azure function from VS code,

I am getting below error while deploying from VS code to azure function.. Function app was created from UI 11:13:57 AM vmusage: Creating placeholder blob for li

How to deploy nodejs Azure function to azure with docker?

This is my first time playing with azure. I have a simple tool written which has to fetch some data from the postgres db, and send it to a MS teams channel. All

Remove Hypen in GUID Power Automate

"c2ecc88d-88c8-4096-912c-d6f2e2b138ce" How do I remove the hypen in the above GUID? Here is what I tried below: replace(variables('GUID String'),/-/g,"") con

how to make Azure Function using Blob Trigger await until the all files is loaded completely to the container in Azure?

I'm using Azure function application and I'm using 5 or 6 blob trigger function in my project, I publish my project to azure and I need the function app to be e

How to call UseEndpoints() and MapGraphQL() for HotChocolate on Azure Function isolated/out-of-process?

I follow this repo https://github.com/chandsalam1108/GraphQLAzFunctionNet5 and https://chillicream.com/docs/hotchocolate/server/endpoints#mapgraphql How do I ca

Azure function deployment in KEDA/AKS

I have an azure function written in node js, triggered by a new message in Azure storage queue. It is working fine locally. My goal is to trigger function pod o

Stop a slot in Azure Function

Is there is a way to stop a slot (staging) that has been created for a function app using app setting?