/azure.functions.tables

Azure Function with new Table Storage binding and connection by identity

Primary LanguageC#MIT LicenseMIT

Evaluation of WebJobs Table extension and Azure Function identity connections

Table extensions

Restore the nuget package:

dotnet add package Microsoft.Azure.WebJobs.Extensions.Tables

nuget.org: Microsoft.Azure.WebJobs.Extensions.Tables

Information and samples about the tables extension:

https://devblogs.microsoft.com/azure-sdk/whats-new-in-the-azure-functions-tables-extension-for-net-beta/

Connections based on Identity

Tutorial: Create a function app that connects to Azure services using identities instead of secrets

Code in the repository

  • Azure Function for adding and deleting table data with TableClient.
  • Unit tests for adding and deleting table data with TableClient.
  • Deployment of Azure Function and resources for using managed identity.

More links

Quickstart: Create a C# function in Azure from the command line

Azure Function with identity-based connections

Unit Test Azure Function with Table Extension in C#