About 371,000 results
Open links in new tab
  1. c# - logs not appearing in Application Insights for Azure Functions v4 ...

    Nov 28, 2023 · I am confused by this statement from MS: "The Functions host and the isolated process worker have separate configuration for log levels, etc. Any Application Insights configuration in …

  2. c# - Azure Function Middleware: How to return a custom HTTP …

    Jul 12, 2021 · I am exploring Azure Function running on .net 5 and I found out about the new middleware capabilities. I have built a dummy middleware like this one: public sealed class …

  3. c# - Using appsettings in Azure function - Stack Overflow

    Apr 5, 2022 · About what you wrote "App settings in a function app contain configuration options that affect all functions for that function app. When you run locally, these settings are accessed as local …

  4. c# - An Azure Functions project function is not populating a parameter ...

    Apr 26, 2024 · Using .Net 8, I have created an Azure Function project. In my function, I want to populate the accountRequest object in the parameters. I attempted to get the accountRequest by adding an …

  5. Azure Functions on .Net 8 with Entity Framework Core

    Mar 18, 2024 · I need to create an Azure Function app using .Net 8 and EF Core where I can: Perform CRUD operations from Az functions Use either a DB Context or a repository object Ensure either of …

  6. c# - Configuring NET 6 Azure Function App Healthchecks - Stack …

    Apr 3, 2023 · 5 I'm struggling to find any up to date documentation on how to setup healthchecks in Azure for a .NET 6 Core function app. The app is running in DOTNET-ISOLATED, within an app …

  7. c# - Azure Functions Database Connection String - Stack Overflow

    May 13, 2016 · How do I add or access an app.config file in Azure functions to add a database connection string? If you're not supposed to add an app.config and there is a better way to access an …

  8. c# - What is the simplest way to run a timer-triggered Azure Function ...

    Oct 4, 2017 · I have a few C# Azure Functions that run on a schedule using timer triggers. I've set them up like so, where %TimerSchedule% refers to a cron expression in the app settings: public static void …

  9. c# - Resolving "No job functions found" Error in Azure Functions ...

    Dec 25, 2023 · I'm encountering an issue with my Azure Functions project that's causing a persistent "No job functions found. Try making your job classes and methods public" error.

  10. How to setup Serilog with Azure Functions v4 correctly?

    Feb 8, 2022 · I'm answering it for Azure Functions v4 (Isolated mode). Firstly, the Functions.csproj file structure is outlined below, allowing one to add the Serilog packages I am using.