Skip to content

Instantly share code, notes, and snippets.

View LarsKemmann's full-sized avatar

Lars Kemmann LarsKemmann

View GitHub Profile
@MrMikeFloyd
MrMikeFloyd / HttpTrigger.cs
Last active January 17, 2021 22:00
Sample for binding an Azure Function (v2) to an external Table Storage using CloudTable instead of IQueryable. Tested on Visual Studio Code 1.19.3 and .NET Core 2.0.5 on macOS.
using System.IO;
using Microsoft.Azure.WebJobs;
using Microsoft.Azure.WebJobs.Extensions.Http;
using Microsoft.AspNetCore.Http;
using Microsoft.Azure.WebJobs.Host;
using Newtonsoft.Json;
using System;
using Microsoft.WindowsAzure.Storage.Table;
using System.Collections.Generic;
using System.Net.Http;