Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 2 KB

functions-bindings-storage-table.md

File metadata and controls

37 lines (25 loc) · 2 KB
title description author ms.topic ms.date ms.author ms.custom
Azure Table storage bindings for Azure Functions
Understand how to use Azure Table storage bindings in Azure Functions.
craigshoemaker
reference
09/03/2018
cshoe
devx-track-csharp, devx-track-python

Azure Table storage bindings for Azure Functions

Azure Functions integrates with Azure Storage via triggers and bindings. Integrating with Table storage allows you to build functions that read and write Table storage data.

Action Type
Read table storage data in a function Input binding
Allow a function to write table storage data Output binding

Packages - Functions 2.x and higher

The Table storage bindings are provided in the Microsoft.Azure.WebJobs.Extensions.Storage NuGet package, version 3.x. Source code for the package is in the azure-webjobs-sdk GitHub repository.

[!INCLUDE functions-package-v2]

Packages - Functions 1.x

The Table storage bindings are provided in the Microsoft.Azure.WebJobs NuGet package, version 2.x. Source code for the package is in the azure-webjobs-sdk GitHub repository.

[!INCLUDE functions-package-auto]

[!INCLUDE functions-storage-sdk-version]

Next steps